/* ============================================
   LOGIN.CSS - Styles pour la page de connexion
   ============================================ */

   body {
    min-height: 100vh;
    background: var(--dark);
    display: flex;
    overflow: hidden;
  }
  
  /* === LEFT PANEL === */
  .left-panel {
    flex: 1;
    position: relative;
    background: linear-gradient(145deg, #0f2027, #203a43, #2c5364);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    overflow: hidden;
  }
  
  .left-panel::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 200, 120, 0.2) 0%, transparent 70%);
    top: -200px;
    left: -150px;
  }
  
  .left-panel::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 140, 58, 0.15) 0%, transparent 70%);
    bottom: -100px;
    right: -80px;
  }
  
  .left-content {
    position: relative;
    z-index: 2;
    max-width: 440px;
  }
  
  .left-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 50px;
  }
  
  .left-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green), var(--orange));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
  }
  
  .left-logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #fff;
  }
  
  .left-logo-text span {
    color: var(--orange);
  }
  
  .left-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
  }
  
  .left-content h2 .grad {
    background: linear-gradient(135deg, var(--green), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .left-content > p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 40px;
  }
  
  /* Benefits List */
  .benefits {
    list-style: none;
  }
  
  .benefits li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
  }
  
  .benefit-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }
  
  .benefit-icon.g {
    background: rgba(0, 200, 120, 0.15);
  }
  
  .benefit-icon.o {
    background: rgba(255, 140, 58, 0.15);
  }
  
  .benefit-icon.w {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .benefits li h5 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 2px;
  }
  
  .benefits li p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin: 0;
  }
  
  /* === RIGHT PANEL === */
  .right-panel {
    flex: 0 0 480px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
    position: relative;
  }
  
  .form-container {
    width: 100%;
    max-width: 380px;
  }
  
  /* Tabs */
  .tabs {
    display: flex;
    background: #f3f4f6;
    border-radius: 14px;
    padding: 5px;
    margin-bottom: 32px;
  }
  
  .tab {
    flex: 1;
    padding: 11px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 15px;
    color: #6b7280;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .tab.active {
    background: #fff;
    color: var(--dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .tab:hover:not(.active) {
    color: var(--green);
  }
  
  /* Form */
  .form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
  }
  
  .form-sub {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 28px;
  }
  
  .input-group {
    margin-bottom: 20px;
  }
  
  .input-group label {
    display: block;
    font-weight: 700;
    font-size: 13px;
    color: #374151;
    margin-bottom: 7px;
  }
  
  .input-wrap {
    position: relative;
  }
  
  .input-wrap .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 17px;
    pointer-events: none;
  }
  
  .input-group input {
    width: 100%;
    padding: 13px 16px 13px 42px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
    background: #fafafa;
    transition: 0.3s;
    outline: none;
  }
  
  .input-group input:focus {
    border-color: var(--green);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 200, 120, 0.1);
  }
  
  .input-group input::placeholder {
    color: #9ca3af;
  }
  
  .input-row {
    display: flex;
    gap: 14px;
  }
  
  .input-row .input-group {
    flex: 1;
  }
  
  .btn-form {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green), #00e88a);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 4px 18px rgba(0, 200, 120, 0.3);
    transition: 0.3s;
  }
  
  .btn-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 200, 120, 0.4);
  }
  
  .divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0;
  }
  
  .divider .line {
    flex: 1;
    height: 1px;
    background: #e5e7eb;
  }
  
  .divider span {
    color: #9ca3af;
    font-size: 13px;
    font-weight: 600;
  }
  
  .btn-google {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    background: #fff;
    font-weight: 700;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
  }
  
  .btn-google:hover {
    border-color: #ccc;
    background: #f9fafb;
  }
  
  .form-footer {
    text-align: center;
    margin-top: 28px;
    font-size: 14px;
    color: #6b7280;
  }
  
  .form-footer a {
    color: var(--green);
    font-weight: 700;
    text-decoration: none;
  }
  
  .form-footer a:hover {
    text-decoration: underline;
  }
  
  .remember-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
  }
  
  .remember-row label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
    cursor: pointer;
  }
  
  .remember-row label input[type='checkbox'] {
    accent-color: var(--green);
    width: 16px;
    height: 16px;
  }
  
  .remember-row a {
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
  }