.login-container {
  margin: auto;
  margin-top: 8%;
  display: flex;

  /* width: 70%;
  height: 80vh; */
  max-width: 900px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: white;
}

/* Left Section */
.login-left {
  flex: 1;
  background: radial-gradient(circle, #a0003d, #45001e);
  /* background: #a0003d; */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Right Section */
.login-right {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h2 {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
}

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

label {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  font-weight: bold;
}

input {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.login-button {
  width: 100%;
  padding: 0.8rem;
  background: radial-gradient(circle, #a0003d, #45001e);
  margin: 3px;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.login-button:hover {
  background: #45001e;
}

.or-text {
  text-align: center;
  margin: 1rem 0;
  font-size: 0.9rem;
  font-weight: bold;
}

.alt-button {
  width: 100%;
  padding: 0.8rem;
  background: white;
  color: black;
  border: 1px solid black;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.alt-button:hover {
  background: black;
  color: white;
}

.login-options {
  text-align: center;
  margin-top: 1rem;
}

.forgot-password,
.signup-link {
  color: #a0003d;
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.forgot-password:hover,
.signup-link:hover {
  text-decoration: underline;
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
    width: 90%;
    height: auto;
    max-width: 400px;
    margin-top: 33%;
  }

  .login-left {
    display: none;
  }

  .login-right {
    padding: 2rem;
  }
}
