body {
  background-color: #dae9e8;
}

.login-container {
  margin: 0 auto 9.6rem;
  background-color: #f3f8f7;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  padding: 4rem;
  max-width: 40rem;
  width: 100%;
}

h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
}

.subtext {
  text-align: center;
  color: #999;
  margin-bottom: 3rem;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

input {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 2rem;
}

input[type='submit'] {
  cursor: pointer;
  background-color: #4e6d6b;
  color: #fff;
  border: none;
  border-radius: 4px;
}

input[type='submit']:hover {
  background-color: #273635;
}

input[type='submit']:active {
  background-color: #0d1212;
}

.terms {
  display: flex;
  margin-top: 1rem;
  gap: 0.8rem;
  opacity: 0.7; /* Fade effect */
  font-size: 1.4rem; /* Decrease font size */
  transition: opacity 0.3s ease, font-size 0.3s ease; /* Add transition */
}

.terms:hover {
  opacity: 1;
}
