
.hc-auth-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background: url('https://i.pinimg.com/1200x/47/bf/a6/47bfa60f2bef0c67cc9dae29101a85fb.jpg')center/cover no-repeat;
    font-family:'Poppins',sans-serif;
  }
  
  .hc-auth-container{
    width:900px;
    height:550px;
    display:flex;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,0.1);
    background:#fff;
    position:relative;
  }
  
  /* LEFT */
  .hc-auth-left{
    flex:1;
    background:linear-gradient(135deg,#6B0F1A,#3d0810);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
    transition:.6s;
  }
  
  .hc-auth-overlay{
    text-align:center;
  }
  .hc-logo{
    width: 200px;
    margin-bottom: 20px;
  }
  
  .hc-auth-overlay h2{
    font-family:'Playfair Display',serif;
    margin-bottom:15px;
  }
  
  .hc-switch-btn{
    margin-top:25px;
    padding:12px 30px;
    border:none;
    background:#D4AF37;
    color:#000;
    border-radius:30px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
  }
  
  .hc-switch-btn:hover{
    background:#fff;
  }
  
  /* RIGHT */
  .hc-auth-right{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
  }
  
  .hc-form{
    width:70%;
    position:absolute;
    transition:.6s;
    opacity:0;
    transform:translateX(100%);
  }
  
  .hc-form.active{
    opacity:1;
    transform:translateX(0);
  }
  
  .hc-form h3{
    margin-bottom:25px;
    font-family:'Playfair Display',serif;
  }
  
  .hc-input{
    margin-bottom:18px;
  }
  
  .hc-input input{
    width:100%;
    padding:12px;
    border:none;
    border-bottom:1px solid #ccc;
    outline:none;
  }
  
  .hc-input input:focus{
    border-color:#6B0F1A;
  }
  
  .hc-btn-primary{
    width:100%;
    padding:12px;
    background:#6B0F1A;
    color:#fff;
    border:none;
    border-radius:25px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
  }
  
  .hc-btn-primary:hover{
    background:#D4AF37;
    color:#000;
  }
  
  /* SWITCH ANIMATION */
  .hc-signup{
    transform:translateX(-100%);
  }
  


  /* remember + terms row */
.hc-remember-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
    font-size:14px;
  }
  
  .hc-terms{
    margin-bottom:18px;
    font-size:14px;
  }
  
  .hc-checkbox{
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
  }
  
  .hc-checkbox input{
    accent-color:#6B0F1A;
    width:16px;
    height:16px;
  }
  
  .hc-terms a{
    color:#6B0F1A;
    font-weight:600;
    text-decoration:none;
  }
  
  .hc-terms a:hover{
    color:#D4AF37;
  }

  /* SOCIAL CONNECT */
.hc-social-login{
    margin-top:25px;
    text-align:center;
  }
  
  .hc-social-login p{
    font-size:14px;
    color:#777;
    margin-bottom:15px;
    position:relative;
  }
  
  .hc-social-buttons{
    display:flex;
    gap:12px;
  }
  
  .hc-social-btn{
    flex:1;
    padding:10px;
    border-radius:25px;
    border:1px solid #ddd;
    background:#fff;
    font-weight:500;
    cursor:pointer;
    transition:.3s;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
  }
  
  .hc-social-btn i{
    font-size:16px;
  }
  
  /* Google */
  .hc-google:hover{
    background:#fff;
    border-color:#D4AF37;
    color:#6B0F1A;
  }
  
  /* Facebook */
  .hc-facebook:hover{
    background:#6B0F1A;
    color:#fff;
    border-color:#6B0F1A;
  }

  /* ===============================
AUTH RESPONSIVE FIX
=============================== */

/* make container flexible */
.hc-auth-container{
    display:flex;
    width:900px;
    max-width:95%;
    min-height:520px;
    height:auto;
  }
  
  /* ===== TABLET ===== */
  @media (max-width:992px){
  
    .hc-auth-container{
      flex-direction:column;
      width:95%;
      border-radius:20px;
      overflow:hidden;
    }
  
    /* top red welcome panel */
    .hc-auth-left{
      width:100%;
      min-height:220px;
      padding:30px 20px;
      border-radius:20px 20px 0 0;
      text-align:center;
    }
  
    /* forms section */
    .hc-auth-right{
      width:100%;
      padding:25px 20px 35px;
      display:flex;
      flex-direction:column;
      gap:25px;
    }
  
    /* remove absolute animation positioning */
    .hc-form{
      position:relative !important;
      opacity:1 !important;
      transform:none !important;
      width:100%;
    }
  
    /* stack login & signup */
    .hc-login,
    .hc-signup{
      display:block;
    }
  
    /* reduce title spacing */
    .hc-form h3{
      font-size:22px;
      margin-bottom:18px;
    }
  
  }
  
  /* ===== MOBILE ===== */
  @media (max-width:576px){
  
    .hc-auth-left h2{
      font-size:22px;
    }
  
    .hc-auth-left p{
      font-size:14px;
    }
  
    .hc-switch-btn{
      padding:10px 22px;
      font-size:14px;
    }
  
    .hc-input input{
      padding:12px;
      font-size:14px;
    }
  
    .hc-btn-primary{
      padding:12px;
      font-size:15px;
    }
  
    /* social buttons stack */
    .hc-social-buttons{
      flex-direction:column;
    }
  
    .hc-remember-row{
     
      align-items:flex-start;
      gap:8px;
    }
    .hc-logo{
        width:120px;
    }
  
  }
  /* =========================
MOBILE CLEAN AUTH FIX
========================= */
@media (max-width:992px){

    /* hide signup by default */
    .hc-signup{
      display:none;
    }
  
    .hc-signup.show{
      display:block;
    }
  
    .hc-login.hide{
      display:none;
    }
    .hc-form h3{
        text-align: center;
    }
  
  }