/* Login — extracted from MedichPlus style.css */

/* ===================================== MedichPlus Auth Gateway Design ===================================== */

.mplus-auth-container {
  min-height: 70vh;
  padding: 40px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #00796b, #00bfa5);

  border-radius: 25px;
}

.mplus-auth-brand {
  text-align: center;
  color: white;
  margin-bottom: 35px;
}

.mplus-auth-brand h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.mplus-auth-brand p {
  font-size: 18px;
}

.mplus-auth-options {
  width: 100%;
  max-width: 420px;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mplus-auth-box {
  background: white;

  padding: 25px;

  border-radius: 22px;

  text-decoration: none;

  display: flex;
  flex-direction: column;

  gap: 8px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

  transition: 0.3s ease;
}

.mplus-auth-box strong {
  font-size: 22px;
  color: #00695c;
}

.mplus-auth-box small {
  color: #555;
}

.mplus-auth-icon {
  font-size: 35px;
}

.mplus-auth-box:hover {
  transform: translateY(-5px);
}

@media (max-width: 600px) {
  .mplus-auth-container {
    border-radius: 0;
    min-height: 80vh;
  }

  .mplus-auth-brand h1 {
    font-size: 38px;
  }
}
/* ===================================== MedichPlus Login Enhancement ===================================== */

.mplus-login-wrapper {
  max-width: 450px;
  margin: 50px auto;

  padding: 35px 30px;

  background: white;

  border-radius: 25px;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.mplus-back-link {
  display: inline-block;

  margin-bottom: 20px;

  text-decoration: none;

  color: #00796b;

  font-weight: 600;
}

.mplus-login-header {
  text-align: center;

  margin-bottom: 30px;
}

.mplus-login-logo {
  font-size: 45px;

  margin-bottom: 10px;
}

.mplus-login-header h2 {
  margin-bottom: 8px;

  font-size: 30px;

  color: #00695c;
}

.mplus-login-header p {
  color: #666;
}

.mplus-login-wrapper button {
  background: linear-gradient(135deg, #00796b, #00bfa5);

  transition: 0.3s ease;
}

.mplus-login-wrapper button:hover {
  transform: translateY(-3px);
}

@media (max-width: 600px) {
  .mplus-login-wrapper {
    margin: 25px 15px;

    padding: 25px 20px;
  }
}