/* Authentication Pages Styling */
* {
  box-sizing: border-box;
}

.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.auth-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
  width: 100%;
  max-width: 450px;
  position: relative;
  box-sizing: border-box;
}

.auth-logo {
  text-align: center;
  margin-bottom: 30px;
}

.auth-logo img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
}

.auth-title {
  text-align: center;
  margin-bottom: 10px;
}

.auth-title h2 {
  font-size: 28px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 5px;
}

.auth-subtitle {
  text-align: center;
  color: #718096;
  font-size: 14px;
  margin-bottom: 30px;
}

.auth-form-group {
  margin-bottom: 20px;
  position: relative;
}

.auth-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #2d3748;
  margin-bottom: 8px;
}

.auth-input-wrapper {
  position: relative;
  width: 100%;
}

.auth-input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  font-size: 18px;
  z-index: 1;
  pointer-events: none;
}

.auth-form-group input {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: #ffffff;
  box-sizing: border-box;
}

.auth-form-group input:focus {
  outline: none;
  border-color: #b66dff;
  box-shadow: 0 0 0 3px rgba(182, 109, 255, 0.1);
}

.auth-form-group input::placeholder {
  color: #a0aec0;
}

.auth-forgot-link {
  text-align: right;
  margin-bottom: 25px;
}

.auth-forgot-link a {
  color: #b66dff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.auth-forgot-link a:hover {
  color: #9c5de6;
  text-decoration: underline;
}

.auth-btn {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #b66dff 0%, #9c5de6 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.auth-btn:hover {
  background: linear-gradient(135deg, #9c5de6 0%, #8a4cd4 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(182, 109, 255, 0.4);
}

.auth-btn:active {
  transform: translateY(0);
}

.auth-btn-icon {
  font-size: 18px;
}

.auth-contact-link {
  text-align: center;
  margin-top: 25px;
  color: #718096;
  font-size: 14px;
}

.auth-contact-link a {
  color: #b66dff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.auth-contact-link a:hover {
  color: #9c5de6;
  text-decoration: underline;
}

.auth-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  color: #a0aec0;
  font-size: 12px;
}

/* Error messages */
.auth-error {
  color: #e53e3e;
  font-size: 13px;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 576px) {
  .auth-card {
    padding: 30px 20px;
  }
  
  .auth-title h2 {
    font-size: 24px;
  }
  
  .auth-logo img {
    max-height: 80px;
  }
}

