/* ===================================================
   MCC Store - Login/Auth Page Styles
   =================================================== */

.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a237e 0%, #1e1e2f 100%);
  padding: 20px;
}

.auth-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  padding: 40px 35px;
  width: 100%;
  max-width: 440px;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-card .auth-logo {
  text-align: center;
  margin-bottom: 25px;
}

.auth-card .auth-logo img {
  max-height: 55px;
}

.auth-card .auth-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.auth-card .auth-subtitle {
  text-align: center;
  color: #888;
  font-size: 14px;
  margin-bottom: 30px;
}

.auth-card .form-field {
  margin-bottom: 18px;
  position: relative;
}

.auth-card .form-field label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 6px;
  color: #444;
}

.auth-card .form-field input {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  outline: none;
}

.auth-card .form-field input:focus {
  border-color: #ce0615;
  box-shadow: 0 0 0 3px rgba(206, 6, 21, 0.1);
}

.auth-card .btn-auth {
  width: 100%;
  padding: 13px;
  background: #ce0615;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 5px;
}

.auth-card .btn-auth:hover {
  background: #a5050f;
}

.auth-card .auth-links {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}

.auth-card .auth-links a {
  color: #ce0615;
  font-weight: 600;
}

.auth-card .auth-links a:hover {
  text-decoration: underline;
}

.auth-card .divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.auth-card .divider::before,
.auth-card .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

.auth-card .divider span {
  padding: 0 12px;
  color: #999;
  font-size: 13px;
}

.otp-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}

.otp-inputs input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.otp-inputs input:focus {
  border-color: #ce0615;
  box-shadow: 0 0 0 3px rgba(206, 6, 21, 0.1);
}

@media (max-width: 576px) {
  .auth-card {
    padding: 30px 22px;
  }

  .auth-card .auth-title {
    font-size: 20px;
  }

  .otp-inputs input {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}
