:root {
    --primary-color: #892603;
    --primary-light: #a03b1a;
    --accent-color: #d9ad26;
    --text-color: #333333;
    --light-text: #777777;
    --white: #ffffff;
    --light-gray: #e6e6e6;
    --medium-gray: #999999;
  }

/* Main Auth Container */
.auth-container {
    display: flex;
    min-height: calc(100vh - 80px);
    padding-top: 80px;
    max-width: 1000px;
    margin: 50px auto;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    min-height: 650px;
  }
  
  .auth-forms-container {
    flex: 1;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .auth-image {
    flex: 1;
    background: url('../images/about.jpg') no-repeat center center/cover;
    display: none;
    position: relative;
  }
  
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 20px;
  }
  
  .image-overlay h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .image-overlay ul {
    list-style: none;
    padding: 0;
  }
  
  .image-overlay li {
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
  }
  
  .image-overlay li i {
    margin-right: 10px;
    color: #651c01;
  }
  
  /* Form Navigation Tabs */
  .form-nav {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
  }
  
.form-nav-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    color: var(--primary-color);
}
  
  .form-nav-btn.active {
    opacity: 1;
    font-weight: 600;
    border-bottom: 3px solid #651c01;
  }
  
  /* Auth Forms */
  .auth-form {
    display: none;
  }
  
  .auth-form.active {
    display: block;
  }
  
  .auth-form h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .form-description {
    color: #666;
    margin-bottom: 30px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  .input-with-icon {
    position: relative;
  }
  
  .input-with-icon i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    color: #666;
  }
  
  .input-with-icon input {
    padding: 12px 15px 12px 45px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  .toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
  }
  
  /* Name Fields (First Name and Last Name) */
  .name-fields {
    display: flex;
    gap: 15px;
  }
  
  .name-fields > div {
    flex: 1;
  }
  
  .name-fields input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
  }
  
  .name-fields input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(138, 90, 68, 0.2);
  }
  
  /* Form Options (Remember Me and Forgot Password) */
  .form-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  
  .remember-me, .terms-check {
    display: flex;
    align-items: center;
  }
  
  .remember-me input, .terms-check input {
    margin-right: 8px;
  }
  
  .forgot-password {
    color: #651c01;
    text-decoration: none;
  }
  
  .terms-check label {
    margin-bottom: 0;
  }
  
  .terms-check a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
  }
  
  .terms-check a:hover {
    text-decoration: underline;
  }
  
  /* Submit Button */
  .auth-btn {
    width: 100%;
    padding: 15px;
    background: #651c01;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 25px;
  }
  
  .auth-btn:hover {
    background: #892603;
  }
  
  /* Social Login */
  .social-login {
    margin-top: 30px;
    text-align: center;
  }
  
  .social-login p {
    color: #666;
    margin-bottom: 15px;
    position: relative;
  }
  
  .social-login p::before,
  .social-login p::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #ddd;
  }
  
  .social-login p::before {
    left: 0;
  }
  
  .social-login p::after {
    right: 0;
  }
  
  .social-buttons {
    display: flex;
    gap: 15px;
  }
  
  .social-btn {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .social-btn i {
    margin-right: 8px;
  }
  
  .social-btn.google:hover {
    background: #f2f2f2;
    border-color: #DB4437;
    color: #DB4437;
  }
  
  .social-btn.facebook:hover {
    background: #f2f2f2;
    border-color: #4267B2;
    color: #4267B2;
  }
  
  /* Password Strength Meter */
  .password-strength {
    margin-top: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .password-strength span {
    color: #666;
    font-size: 0.9rem;
    margin-right: 10px;
  }
  
  .strength-meter {
    display: flex;
    gap: 3px;
    margin-right: 10px;
  }
  
  .strength-segment {
    height: 4px;
    width: 25px;
    background: #ddd;
    border-radius: 2px;
  }
  
  .strength-segment.active {
    background: #ff4d4d;
  }
  
  #strength-text {
    font-weight: 600;
    min-width: 50px;
  }
  
  /* Password Requirements */
  .password-requirements {
    list-style: none;
    padding: 0;
    margin-top: 10px;
  }
  
  .password-requirements li {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
  }
  
  .password-requirements li i {
    margin-right: 8px;
    color: #ff4d4d;
  }
  
  .password-requirements li.fulfilled i {
    color: #4CAF50;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .auth-container {
      flex-direction: column;
      margin: 30px 20px;
    }
    
    .auth-image {
      display: none;
    }
  }
  
  @media (max-width: 576px) {
    .auth-forms-container {
      padding: 30px 20px;
    }
    
    .form-nav {
      margin-bottom: 20px;
    }
    
    .form-nav-btn {
      padding: 10px 15px;
      font-size: 14px;
    }
    
    .auth-form h2 {
      font-size: 24px;
    }
    
    .name-fields {
      flex-direction: column;
      gap: 15px;
    }
    
    .form-options {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    
    .social-buttons {
      flex-direction: column;
    }
  }
  
  @media (min-width: 768px) {
    .auth-image {
      display: block;
    }
  }