/* Login Page Styles */
.login-container {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 30px;
  }
  
  .login-card {
    flex: 1;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  }
  
  .login-header {
    text-align: center;
    padding: 40px 20px 30px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
  }
  
  .login-header h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .login-header p {
    color: #666;
    font-size: 16px;
  }
  
  /* Login Tabs */
  .login-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    background-color: #f9f9f9;
  }
  
  .tab {
    flex: 1;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .tab i {
    font-size: 18px;
  }
  
  .tab.active {
    color: #0066cc;
    background-color: white;
    box-shadow: 0 2px 0 #0066cc;
  }
  
  .tab:hover:not(.active) {
    background-color: #f0f0f0;
  }
  
  /* Login Form */
  .login-form-container {
    padding: 30px;
  }
  
  .login-form {
    margin-bottom: 30px;
  }
  
  .form-group {
    margin-bottom: 25px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
  }
  
  .password-label-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }
  
  .forgot-password {
    font-size: 14px;
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .forgot-password:hover {
    color: #004c99;
    text-decoration: underline;
  }
  
  .input-with-icon {
    position: relative;
  }
  
  .input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
  }
  
  .input-with-icon input {
    padding-left: 45px;
  }
  
  .form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
  }
  
  .form-control:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    outline: none;
    background-color: #fff;
  }
  
  .password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  
  .password-toggle:hover {
    color: #0066cc;
  }
  
  .remember-me {
    margin-bottom: 30px;
  }
  
  .checkbox-group {
    display: flex;
    align-items: center;
  }
  
  .checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #0066cc;
  }
  
  .checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 14px;
  }
  
  .form-actions {
    margin-bottom: 30px;
  }

  .main {
    width: 100%;
    padding: 15px;
    background-color: var(--gradient-start);
    color: var(--gradient-start);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(7, 0, 204, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .main:hover {
    background-color: var(--gradient-end);
    box-shadow: 0 4px 8px rgba(3, 0, 204, 0.3);
  }
  
  .btn-secondary {
    width: 100%;
    padding: 15px;
    background-color: #f0f7ff;
    color: #0066cc;
    border: 1px solid #0066cc;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .btn-secondary:hover {
    background-color: #e0f0ff;
  }
  
  /* Verification Code */
  .verification-code-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .verification-input {
    flex: 1;
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
  }
  
  .verification-input:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    outline: none;
    background-color: #fff;
  }
  
  .resend-code {
    text-align: center;
    font-size: 14px;
    color: #666;
  }
  
  .timer {
    display: inline-block;
  }
  
  .resend-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
  }
  
  .resend-link:hover {
    text-decoration: underline;
  }
  
  /* Social Login */
  .divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: #666;
    font-size: 14px;
  }
  
  .divider::before,
  .divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #eee;
  }
  
  .divider span {
    padding: 0 15px;
  }
  
  .social-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
  }
  
  .social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .social-btn.google i {
    color: #db4437;
  }
  
  .social-btn.facebook i {
    color: #4267b2;
  }
  
  .social-btn.apple i {
    color: #000;
  }
  
  /* Register Prompt */
  .register-prompt {
    text-align: center;
    font-size: 14px;
    color: #666;
  }
  
  .register-prompt a {
    color: #0066cc;
    font-weight: 500;
    text-decoration: none;
  }
  
  .register-prompt a:hover {
    text-decoration: underline;
  }
  
  /* Login Benefits */
  .login-benefits {
    flex: 1;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
  }
  
  .benefits-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .benefits-header h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
  }
  
  .benefits-header p {
    color: #666;
    font-size: 16px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex-grow: 1;
  }
  
  .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .benefit-icon {
    width: 50px;
    height: 50px;
    background-color: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066cc;
    font-size: 20px;
    flex-shrink: 0;
  }
  
  .benefit-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
  }
  
  .benefit-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .login-form,
  .phone-form,
  .social-login,
  .register-prompt {
    animation: fadeIn 0.5s ease forwards;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .login-container {
      flex-direction: column;
    }
  
    .login-benefits {
      order: -1;
      margin-bottom: 30px;
    }
  
    .benefits-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .benefits-list {
      grid-template-columns: 1fr;
    }
  
    .social-buttons {
      flex-direction: column;
    }
  }
  
  @media (max-width: 576px) {
    .login-header {
      padding: 30px 15px 20px;
    }
  
    .login-header h1 {
      font-size: 24px;
    }
  
    .login-form-container {
      padding: 20px 15px;
    }
  
    .verification-code-container {
      gap: 5px;
    }
  
    .verification-input {
      width: 40px;
      height: 50px;
      font-size: 20px;
    }
  }
  
  /* Notification styles */
  .notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 15px;
    z-index: 1000;
    max-width: 350px;
    animation: slideIn 0.3s forwards;
    border-left: 4px solid #28a745;
  }
  
  .notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin-left: 15px;
    color: #666;
  }
  
  @keyframes slideIn {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes slideOut {
    from {
      transform: translateX(0);
      opacity: 1;
    }
    to {
      transform: translateX(100%);
      opacity: 0;
    }
  }
  