
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
body {
   font-family: Arial, sans-serif;
   background-color: #ddd;
   overflow: auto; /* Hide scrollbars */
}


/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

.logo{
  width: 20%;
  height: 10%;
  border-radius: 5px;
}

.logo img {
	align-items:center;
}

.login-box {
  width: 410px;
  height: 300px;
  margin: auto;
  box-shadow: 0px 0px 10px 0px #000;
  border-radius: 8px;
  background-color: white;
}
h3 {
  text-align: center;
  padding-top: 15px;
}

h4 {
  text-align: center;
}

form {
  width: 360px;
  margin-left: 20px;
  text-align: center;
}

form label {
  display: flex;
  margin-top: 20px;
  font-size: 18px;
}

form input {
  width: 100%;
  padding: 7px;
  border: none;
  border: 1px solid gray;
  border-radius: 6px;
  outline: none;
}

input:focus,textarea:focus{
	outline:none;
	border:2px solid ;
	background-color: #Fafae7;
	}	

input[type="submit"] {
  width: 100px;
  height: 35px;
  margin-top: 25px;
  border: none;
  background-color: #49c1a2;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

input[type="reset"] {
  width: 100px;
  height: 35px;
  margin-top: 20px;
  border: none;
  background-color: #49c1a2;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.footer-text {
	color: black;
}

.footer-text a {
	color: red;
}