body, html {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(31,48,69,1) 52%, rgba(64,91,125,1) 100%);
}

header {
  text-align: center;
  margin-top: 30px;
}


h1 {
  color: white;
  font-size: 1.75rem;
  font-family: Arial;
  margin: 20px 0 40px;
  font-weight: 400;
}

hr {
  width: 29%;
  height: 2px;
  background-color: #B1D366;
  border-radius: 20px;
  margin: 20px auto 30px;
  border: none;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  background-color: rgba(102, 119, 127, 0.2);
  border-radius: 15px;
  padding: 25px;
  border: solid 2px rgba(255, 255, 255, 0.3);
  width: 25%;
}

.login-box {
  display: flex;
  flex-direction: column;
  align-items: center;

}


.group-input {
  display: flex;
  width: 100%;
  position: relative;
}

.group-input i{
  position: absolute;
  margin-top: 14px;
  margin-left: 12px;
  font-size: 1.2rem;
}


input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px 0px 10px 0px;
  font-size: 1.3rem;
  margin-bottom: 20px;
  border-radius: 8px;
  border: solid 1px whitesmoke;
  outline: none;
  font-size: large;
  text-indent: 40px;
  font-weight: 500;
  font-family: Arial;

}



input[type="email"]::placeholder,
input[type="password"]::placeholder {
  color: #c4c4c4;
  font-family: Arial;
  font-size: 1.3rem;
  font-weight: 500;
}

input[type="email"]:focus,
input[type="password"]:focus {
  box-sizing: border-box;
  border: solid 2px #91bd33;
}

button {
  width: 100%;
  padding: 12px 0px;
  background-color: rgba(204, 210, 212, 0.3);
  margin-top: 5px;
  margin-bottom: 20px;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1.4rem;
  font-weight: 500;
}

button:hover {
  background-color: #a2cc4a;
  color: white;

}

button:active {
  background-color: #D0E5A3;
  color: #001c2a;
}

@media (max-width: 768px) {

  .login-container {
    width: 60%;
  }

  hr {
    width: 65%;
  }
}


