/* Authentication Pages Styles */
.auth-section {
  padding: 80px 0;
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
}

.auth-image {
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
}

.auth-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 600px;
}

.auth-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-quote {
  color: var(--white);
  text-align: center;
  max-width: 80%;
}

.auth-quote i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.auth-quote p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.auth-quote span {
  font-style: italic;
  opacity: 0.8;
}

.auth-form-container {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  max-width: 550px;
  margin: 0 auto;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--text-light);
}

.auth-form .form-group {
  margin-bottom: 1.5rem;
}

.auth-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.auth-form .input-group {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.auth-form .input-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--gray-light);
  color: var(--gray-dark);
}

.auth-form input {
  flex: 1;
  height: 50px;
  padding: 0 15px;
  border: none;
  outline: none;
  font-size: 1rem;
}

.auth-form .password-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
  color: var(--gray-dark);
}

.auth-form .password-toggle:hover {
  color: var(--primary);
}

.auth-form .password-strength {
  margin-top: 0.5rem;
}

.auth-form .strength-meter {
  height: 4px;
  background-color: var(--gray);
  border-radius: 2px;
  margin-bottom: 0.5rem;
}

.auth-form .strength-meter-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.auth-form .strength-meter-fill[data-strength="0"] {
  width: 20%;
  background-color: var(--danger);
}

.auth-form .strength-meter-fill[data-strength="1"] {
  width: 40%;
  background-color: var(--warning);
}

.auth-form .strength-meter-fill[data-strength="2"] {
  width: 60%;
  background-color: var(--warning);
}

.auth-form .strength-meter-fill[data-strength="3"] {
  width: 80%;
  background-color: var(--success);
}

.auth-form .strength-meter-fill[data-strength="4"] {
  width: 100%;
  background-color: var(--success);
}

.auth-form .strength-text {
  font-size: 0.875rem;
  color: var(--gray-dark);
}

.auth-form .form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.auth-form .remember-me {
  display: flex;
  align-items: center;
}

.auth-form .remember-me input {
  margin-right: 0.5rem;
  width: auto;
  height: auto;
}

.auth-form .forgot-password {
  color: var(--primary);
  font-size: 0.875rem;
}

.auth-form .btn-block {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
}

.auth-form .checkbox-group {
  display: flex;
  align-items: flex-start;
}

.auth-form .checkbox-group input {
  margin-right: 0.5rem;
  margin-top: 0.25rem;
  width: auto;
  height: auto;
}

.auth-form .checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.875rem;
}

.auth-form .checkbox-group a {
  color: var(--primary);
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
}

.auth-footer a {
  color: var(--primary);
  font-weight: 500;
}

.social-login {
  margin-bottom: 1.5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 1rem;
}

.social-btn:hover {
  background-color: var(--gray-light);
}

.social-btn img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.social-btn i {
  font-size: 20px;
  margin-right: 10px;
}

.social-btn.google-btn i {
  color: #db4437;
}

.social-btn.facebook-btn i {
  color: #4267b2;
}

.divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--border-color);
}

.divider span {
  padding: 0 1rem;
  color: var(--gray-dark);
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 991.98px) {
  .auth-section {
    padding: 60px 0;
  }

  .auth-form-container {
    padding: 2rem;
  }
}

@media (max-width: 767.98px) {
  .auth-form-container {
    padding: 1.5rem;
  }

  .auth-header h1 {
    font-size: 1.75rem;
  }
}
