@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


body, html {
  font-family: "Roboto", serif;
  font-weight: 300;
  font-style: normal;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
  to bottom,
  #1a23e0 5vh,
  #ffffff 15vh,
  #ffffff 70vh,
  #ffffff 95vh,
  #1fff00 100vh
  );
}

.main-header {
  padding: 15px 40px;
  display: flex-start;
  align-items: left;
  position: absolute;
  top: 0;
  left: 0;
}

.main-header .logo {
  display: flex;
  align-items: left;
}

.main-header .logo img {
  max-height: 100px;
}

.signin {
  background: #ffffff;
  padding: 1rem 1.2rem;
  border-radius: 20px;
  box-shadow: 0 -5px 6px rgba(26, 35, 224, 0.8),
    0 5px 5px rgba(31, 255, 0, 0.8);
  width: 100%;
  max-width: 400px;
}

.signin .group {
  margin-bottom: 1rem;
}

.signin .group.head h2 {
  margin: 0;
  text-align: center;
  color: #1a23e0;
  text-align: center;
}

.signin .group label {
  font-size: 1rem;
  font-weight: bold;
  color: #1a23e0;
}

.signin .group input {
  width: auto;
  height: auto;
  padding: 0.7rem;
  margin-top: 0.5rem;
  border: 2px solid #1a23e0;
  border-radius: 5px;
  font-size: 15px;
}

.signin .group button {
  width: 100%;
  padding: 0.5rem;
  background-color: #1a23e0;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1.2em;
  cursor: pointer;
  transition:
    background-color 0.3s,
    background 0.3s;
   border: 2px solid #ffffff;
  border-radius: 5px;
}

.signin .group button:hover {
  background-color: #ffffff;
  color: #1a23e0;
  border: 2px solid #1a23e0;
  border-radius: 5px;
}

.forgot-pass-link {
  text-align: center;
  margin-top: 1rem;
}

.signin .group .forgot-pass-link a {
  text-decoration: none;
  color: #007BFF;
  font-size: 0.9rem;
  text-align: center;
}

.signin .group .forgot-pass-link a:hover {
  text-decoration: underline;
}

.field-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #cccccc;
}

.signin form {
  position: relative;
}


