/* ===== AUTHENTICATION STYLES ===== */
.auth-section {
    padding: 6rem 0;
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
  }
  
  .auth-container {
    display: flex;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
  }
  
  .auth-form-container {
    flex: 1;
    padding: 3rem;
    min-width: 320px;
  }
  
  .auth-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .auth-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
  }
  
  .auth-subtitle {
    font-size: 1rem;
    color: var(--text-light);
  }
  
  .auth-form {
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
  }
  
  .input-group {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .input-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-lighter);
  }
  
  .input-group input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
  }
  
  .input-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(114, 9, 183, 0.1);
    outline: none;
  }
  
  .password-toggle {
    position: absolute;
    right: 1rem;
    color: var(--text-lighter);
    cursor: pointer;
  }
  
  .password-strength {
    margin-top: 0.75rem;
  }
  
  .strength-bar {
    height: 5px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    overflow: hidden;
  }
  
  .strength-progress {
    height: 100%;
    width: 0;
    border-radius: 5px;
    transition: var(--transition);
  }
  
  .strength-progress[data-strength="0"] {
    width: 20%;
    background-color: var(--danger-color);
  }
  
  .strength-progress[data-strength="1"] {
    width: 40%;
    background-color: var(--warning-color);
  }
  
  .strength-progress[data-strength="2"] {
    width: 60%;
    background-color: var(--info-color);
  }
  
  .strength-progress[data-strength="3"] {
    width: 80%;
    background-color: var(--success-color);
  }
  
  .strength-progress[data-strength="4"] {
    width: 100%;
    background-color: var(--success-color);
  }
  
  .strength-text {
    font-size: 0.8rem;
    color: var(--text-lighter);
  }
  
  .strength-value {
    font-weight: 600;
  }
  
  .checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
  }
  
  .checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
  }
  
  .checkbox-group label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
  }
  
  .checkbox-group label a:hover {
    text-decoration: underline;
  }
  
  .btn-block {
    width: 100%;
  }
  
  .auth-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
  }
  
  .auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
  }
  
  .auth-divider span {
    position: relative;
    background-color: white;
    padding: 0 1rem;
    font-size: 0.9rem;
    color: var(--text-lighter);
  }
  
  .social-auth {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .social-auth-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    border: 1px solid #e0e0e0;
    background-color: white;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .social-auth-btn.google:hover {
    background-color: #f8f9fa;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .social-auth-btn.facebook {
    background-color: #1877f2;
    border-color: #1877f2;
    color: white;
  }
  
  .social-auth-btn.facebook:hover {
    background-color: #166fe5;
    box-shadow: 0 2px 10px rgba(24, 119, 242, 0.3);
  }
  
  .social-auth-btn img {
    width: 20px;
    height: 20px;
  }
  
  .auth-footer {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
  }
  
  .auth-footer a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
  }
  
  .auth-footer a:hover {
    text-decoration: underline;
  }
  
  .auth-info {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .auth-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
  }
  
  .auth-info-content {
    position: relative;
    z-index: 2;
    max-width: 400px;
  }
  
  .auth-info-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
  }
  
  .auth-benefits {
    margin-bottom: 2rem;
  }
  
  .auth-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
  }
  
  .benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .benefit-content p {
    font-size: 0.95rem;
    opacity: 0.9;
  }
  
  .auth-testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
  }
  
  .testimonial-content {
    margin-bottom: 1.5rem;
  }
  
  .testimonial-content i {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.7;
  }
  
  .testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
  }
  
  .author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .author-info p {
    font-size: 0.85rem;
    opacity: 0.8;
  }
  
  .auth-welcome {
    margin-bottom: 2rem;
  }
  
  .auth-welcome-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .auth-welcome-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .auth-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .auth-stat-item {
    text-align: center;
  }
  
  .stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  .forgot-password {
    text-align: right;
    margin-top: 0.5rem;
  }
  
  .forgot-password a {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-decoration: none;
  }
  
  .forgot-password a:hover {
    text-decoration: underline;
  }
  
  .auth-help {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
  }
  
  .auth-help h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .auth-help p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
  }
  
  .help-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .help-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
  }
  
  .help-option:hover {
    text-decoration: underline;
  }
  
  /* Password Reset Styles */
  .password-reset-info {
    color: white;
  }
  
  .password-reset-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
  }
  
  .reset-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .reset-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .step-number {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
  }
  
  .step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .step-content p {
    font-size: 0.95rem;
    opacity: 0.9;
  }
  
  .reset-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
  }
  
  .reset-note i {
    font-size: 1.25rem;
  }
  
  .reset-note p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Email Verification Styles */
  .verification-container {
    flex-direction: column;
    max-width: 700px;
    padding: 3rem;
  }
  
  .verification-content {
    text-align: center;
  }
  
  .verification-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
  }
  
  .verification-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .verification-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .verification-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .verification-timer {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2rem;
  }
  
  .countdown {
    font-weight: 600;
    color: var(--primary-color);
  }
  
  .verification-help {
    max-width: 500px;
    margin: 0 auto 2rem;
    text-align: left;
  }
  
  .verification-help h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .help-list {
    list-style-type: disc;
    padding-left: 1.5rem;
  }
  
  .help-list li {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
  }
  
  .help-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
  }
  
  .help-list a:hover {
    text-decoration: underline;
  }
  
  .verification-footer {
    font-size: 0.95rem;
    color: var(--text-light);
  }
  
  .verification-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
  }
  
  .verification-footer a:hover {
    text-decoration: underline;
  }
  
  .verification-success {
    text-align: center;
  }
  
  .success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success-color), #5cb85c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
  }
  
  .success-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 1rem;
  }
  
  .success-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .success-actions {
    display: flex;
    justify-content: center;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .auth-container {
      flex-direction: column;
    }
    
    .auth-info {
      padding: 2rem;
    }
    
    .auth-info-content {
      max-width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .auth-section {
      padding: 4rem 0;
    }
    
    .auth-form-container {
      padding: 2rem;
    }
    
    .auth-title {
      font-size: 1.8rem;
    }
    
    .social-auth {
      flex-direction: column;
    }
    
    .verification-actions {
      flex-direction: column;
    }
  }
  
  @media (max-width: 576px) {
    .auth-form-container {
      padding: 1.5rem;
    }
    
    .auth-stats {
      flex-direction: column;
    }
    
    .auth-stat-item {
      margin-bottom: 1.5rem;
    }
    
    .verification-icon, .success-icon {
      width: 80px;
      height: 80px;
      font-size: 2.5rem;
    }
    
    .verification-title, .success-title {
      font-size: 1.8rem;
    }
  }