:root {
  --primary-color: #9c4957;
  --primary-hover: #8a3f4c;
}

.login-container {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

.login-form .form-control {
  padding: 0.75rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
}

.login-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(156, 73, 87, 0.25);
}

.forgot-password {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.form-label {
  font-weight: 500;
  color: #495057;
  margin-bottom: 0.5rem;
}

.btn-signup-glow {
    background: transparent;
    color: #1c0d10;
    font-weight: bold;
    border-radius: 999px;
    height: 40px;
    padding: 8px 1.5rem;
    border: 2px solid #f4e7e9;
    font-size: 1rem;
    line-height: 1.2;
    transition: all 0.2s;
}

.btn-signup-glow:hover,
.btn-signup-glow:focus {
    background: #f4e7e9;
    color: #1c0d10;
    border-color: #e9d3d7;
}
