@import url(./index.css);

.login-container {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.25rem;
}
.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
}
.login-form input {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-size: 1rem;
}
.login-form button {
  padding: 0.75rem;
  border: none;
  border-radius: 2px;
  background-color: #000;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.login-form button:hover {
  background-color: #333;
}
.login-form button:active {
  transform: scale(0.98);
}
.forgot-password {
  font-size: 0.875rem;
  color: #1d2023;
  cursor: pointer;
  align-self: flex-end;
}

.page-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

#loginButton {
  margin-top: 1rem;
}

#signupButton,
#backToLogin,
#backToLoginFromForgot {
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
}

.forgot-password-message {
  font-size: 0.875rem;
  color: #666;
  text-align: center;
  margin: 0;
}

@media (min-width: 768px) {
  body {
    justify-content: center;
    align-items: center;
  }
  #mainLogoContainer {
    width: 13rem;
    align-self: baseline;
    margin-left: 0;
  }

  .login-container {
    width: 420px;
  }
}
