body {
  background-color: #221e36ff;
}

.login-card {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  width: 100%;
  max-height: 480px;
  height: 100%;
  margin-bottom: 130px;
}

.logo {
  width: 200px;
  height: auto;
  margin-bottom: 2rem;
}

.signup-title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.form-control {
  border-radius: 9px;
  padding: 0.85rem;
  max-width: 400px;
  max-height: 200px;
  border: 1px solid #ced4da;
  outline: 1px solid #3f125bff;
  transition: all 0.2s ease;
  margin-bottom: 1.25rem;
}

.form-control:focus {
  outline: 3px solid #5a1690 !important;
  border-color: #5a1690 !important;
  box-shadow: 0 0 0 0.2rem rgba(106, 27, 154, 0.25) !important;
}

.form-control::placeholder {
  white-space: pre-line;
  color: #999;
  opacity: 1;
}

/* === LOGIN BUTTON - ALIGNED + HOVER === */
.btn-signup {
  background-color: #5f2881ff;
  border: none;
  color: white;
  border-radius: 40px;
  padding: 0.75rem;
  font-weight: bold;
  width: 86%;
  margin-left: 30px; /* Matches .input-wrapper left: 30px */
  transition: background-color 0.2s ease;
}

.btn-signup:hover {
  background-color: #5e1d82ff !important; /* Darker purple on hover */
}

.text-end {
  font-size: 1.4rem;
  font-weight: semi-bold;
  margin-bottom: 1.5rem;
}

.create-account {
  color: #7938a2ff;
  text-decoration: none;
  font-weight: bolder;
  font-size: 1.4rem;
}
