/* ========== Login & Reset Password Forms ========== */

.login-body {
  background-image: linear-gradient(
      21deg,
      rgba(91, 116, 145, 0.37) 68%,
      rgba(245, 247, 248, 0.5) 163%
    ),
    linear-gradient(
      163deg,
      rgba(91, 116, 145, 0.08) 86%,
      rgba(170, 191, 218, 0.5) 40%
    ),
    linear-gradient(
      30deg,
      rgba(170, 191, 218, 0.62) 22%,
      rgba(245, 247, 248, 0.5) 169%
    ),
    linear-gradient(
      48deg,
      rgba(91, 116, 145, 0.73) 64%,
      rgba(170, 191, 218, 0.5) 43%
    );
  background-blend-mode: overlay, multiply, color, normal;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container,
.forgot-password-container,
.reset-password-container {
  text-align: center;
  max-width: 400px;
  margin: 3rem auto;
  padding: 2rem;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.login-container h2,
.forgot-password-container h2,
.reset-password-container h2 {
  color: #5b7492;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.login-container input,
.forgot-password-container input,
.reset-password-container input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: 0.2s;
}

.login-container input:focus,
.forgot-password-container input:focus,
.reset-password-container input:focus {
  border-color: #5b7492;
  outline: none;
  box-shadow: 0 0 5px rgba(91, 116, 146, 0.3);
}

/* ========== Buttons ========== */
.login-container button,
.forgot-password-container button,
.reset-password-container button {
  background: #5b7492;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s ease-in-out;
}

.login-container button:hover,
.forgot-password-container button:hover,
.reset-password-container button:hover {
  background: #aabfda;
  color: #ffffff;
}

/* ========== Forgot Password Link ========== */
.forgot-password {
  display: block;
  text-align: right;
  font-size: 0.9rem;
  color: #5b7492;
  margin-top: 8px;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.forgot-password:hover {
  color: #aabfda;
  text-decoration: underline;
}

/* ========== Dealer Services Section ========== */
.dealer-services {
  text-align: center;
  margin: 2rem auto;
  max-width: 800px;
}

.dealer-services h1 {
  font-size: 2.2rem;
  color: #5b7492;
  font-weight: bold;
}

/* ========== Logout Button ========== */
.logout-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 12px 20px;
  background: #5b7492;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.3s ease-in-out;
}

.logout-btn:hover {
  background: #aabfda;
}
