
    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family:'Poppins',sans-serif;
    }

    body{
      min-height:100vh;
      background:#fff5f5;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:5px;
      overflow-x:hidden;
      position:relative;
    }

    /* BACKGROUND */
    body::before{
      content:'';
      position:fixed;
      inset:0;
      background:
      linear-gradient(rgba(255,245,245,.92),rgba(255,245,245,.92)),
      url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?q=80&w=1600');
      background-size:cover;
      background-position:center;
      z-index:-1;
    }

    .login-wrapper{
      width:100%;
      max-width:1250px;
      background:rgba(255,255,255,.94);
      border-radius:35px;
      overflow:hidden;
      box-shadow:0 15px 40px rgba(0,0,0,.08);
      backdrop-filter:blur(10px);
      position:relative;
    }

    .login-wrapper::before{
      content:'';
      position:absolute;
      width:350px;
      height:350px;
      background:rgba(255,0,0,.05);
      border-radius:50%;
      top:-120px;
      right:-120px;
    }

    .login-wrapper::after{
      content:'';
      position:absolute;
      width:250px;
      height:250px;
      background:rgba(255,0,0,.04);
      border-radius:50%;
      bottom:-100px;
      left:-100px;
    }

    /* LEFT SIDE */

    .left-side{
      position:relative;
      min-height:100%;
      background:
      linear-gradient(rgba(180,0,0,.35),rgba(180,0,0,.35)),
      url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?q=80&w=1200');
      background-size:cover;
      background-position:center;
    }

  /* OVERLAY */

.overlay{
    position:absolute;
    inset:0;
    padding:40px 20px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    color:#fff;
}

/* HEADING */

.overlay h1{
    font-size:55px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:10px;
}

.overlay p{
    font-size:18px;
    opacity:.95;
}

/* CARD ROW */

.card-row{
    display:flex;
    gap:8px;
    margin-top:25px;
    flex-wrap:wrap;
}

/* MINI CARD */

.mini-card{
    flex:1;
    min-width:120px;
    margin:0;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.2);
    backdrop-filter:blur(12px);
    border-radius:18px;
    padding:16px;
    transition:.3s;
}

.mini-card:hover{
    transform:translateY(-3px);
}

/* ICON */

.mini-card i{
    width:48px;
    height:48px;
    background:#fff;
    color:#d50000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    margin-bottom:10px;
}

/* TEXT */

.mini-card p{
    margin-bottom:4px;
    font-size:13px;
}

.mini-card h2{
    font-size:26px;
    font-weight:700;
    margin-bottom:2px;
}

.mini-card span{
    font-size:12px;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .overlay{
        padding:20px 12px;
    }

    .overlay h1{
        font-size:30px;
        margin-bottom:6px;
    }

    .overlay p{
        font-size:14px;
    }

    .card-row{
        gap:6px;
        margin-top:18px;
    }

    .mini-card{
        min-width:95px;
        padding:10px;
        border-radius:14px;
    }

    .mini-card i{
        width:36px;
        height:36px;
        font-size:14px;
        margin-bottom:8px;
    }

    .mini-card p{
        font-size:10px;
        margin-bottom:2px;
    }

    .mini-card h2{
        font-size:18px;
        margin-bottom:0;
    }

    .mini-card span{
        font-size:9px;
        line-height:1.2;
        display:block;
    }

}

/* EXTRA SMALL MOBILE */

@media(max-width:480px){

    .card-row{
        gap:5px;
    }

    .mini-card{
        min-width:85px;
        padding:8px;
    }

    .mini-card i{
        width:32px;
        height:32px;
        font-size:12px;
    }

    .mini-card h2{
        font-size:16px;
    }

    .mini-card p{
        font-size:9px;
    }

    .mini-card span{
        font-size:8px;
    }

}

    /* FORM */

    .form-side{
      padding:60px 50px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      height:100%;
      position:relative;
      z-index:2;
    }

    .logo{
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom:50px;
    }

    .logo-box{
      width:42px;
      height:42px;
      border-radius:12px;
      background:linear-gradient(135deg,#ff3c3c,#d50000);
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
    }

    .logo h4{
      margin:0;
      font-weight:700;
      color:#111;
    }

    .form-side h1{
      font-size:50px;
      font-weight:700;
      margin-bottom:10px;
      color:#111827;
    }

    .sub-text{
      color:#6b7280;
      margin-bottom:35px;
      font-size:16px;
    }

    .form-label{
      font-weight:600;
      margin-bottom:10px;
      color:#111827;
    }

    .input-group{
      border:1px solid #e5e7eb;
      border-radius:16px;
      overflow:hidden;
      height:60px;
      margin-bottom:25px;
      background:#fff;
      transition:.3s;
    }

    .input-group:focus-within{
      border-color:#ff3c3c;
      box-shadow:0 0 0 4px rgba(255,0,0,.06);
    }

    .input-group-text{
      background:#fff;
      border:none;
      color:#9ca3af;
      padding-left:20px;
    }

    .form-control{
      border:none;
      box-shadow:none !important;
      font-size:15px;
    }

    .options{
      display:flex;
      justify-content:space-between;
      align-items:center;
      margin-bottom:30px;
    }

    .options a{
      text-decoration:none;
      color:#d50000;
      font-weight:600;
      font-size:14px;
    }

    /* BUTTON */

    .btn-login{
      height:60px;
      border:none;
      border-radius:16px;
      background:linear-gradient(135deg,#ff3c3c,#d50000);
      color:#fff;
      font-size:18px;
      font-weight:600;
      position:relative;
      overflow:hidden;
      transition:.3s;
    }

    .btn-login::before{
      content:'';
      position:absolute;
      top:0;
      left:-100%;
      width:100%;
      height:100%;
      background:rgba(255,255,255,.18);
      transition:.5s;
    }

    .btn-login:hover::before{
      left:100%;
    }

    .btn-login:hover{
      transform:translateY(-2px);
      box-shadow:0 10px 25px rgba(213,0,0,.25);
    }
 .btn-signup{
      height:60px;
      border:none;
      border-radius:16px;
      background:linear-gradient(135deg,#ff3c3c,#d50000);
      color:#fff;
      font-size:18px;
      font-weight:600;
      transition:.3s;
    }

    .btn-signup:hover{
      transform:translateY(-2px);
      box-shadow:0 10px 25px rgba(213,0,0,.25);
    }
    /* DIVIDER */

    .divider{
      position:relative;
      text-align:center;
      margin:35px 0;
      color:#9ca3af;
    }

    .divider::before,
    .divider::after{
      content:'';
      position:absolute;
      top:50%;
      width:40%;
      height:1px;
      background:#e5e7eb;
    }

    .divider::before{
      left:0;
    }

    .divider::after{
      right:0;
    }

    /* SOCIAL */

    .social-login{
      display:flex;
      gap:15px;
    }

    .social-btn{
      flex:1;
      height:58px;
      border:1px solid #e5e7eb;
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      background:#fff;
      cursor:pointer;
      transition:.3s;
      font-weight:500;
    }

    .social-btn:hover{
      background:#f9fafb;
      transform:translateY(-2px);
    }

    .bottom-text{
      margin-top:35px;
      text-align:center;
      color:#6b7280;
    }

    .bottom-text a{
      text-decoration:none;
      color:#d50000;
      font-weight:600;
    }

    /* MOBILE */

    @media(max-width:991px){

      .left-side{
        display:block !important;
        min-height:420px;
      }

      .overlay{
        padding:25px;
      }

      .overlay h1{
        font-size:34px;
      }

      .overlay p{
        font-size:15px;
      }

      .mini-card{
        width:190px;
        padding:18px;
      }

      .mini-card h2{
        font-size:28px;
      }

      .form-side{
        padding:40px 25px;
      }

      .form-side h1{
        font-size:38px;
      }

    }

    @media(max-width:576px){

      body{
        padding:10px;
      }

      .left-side{
       /* min-height:340px;*/
      }

      .overlay{
        padding:20px;
      }

      .overlay h1{
        font-size:28px;
      }

      .overlay p{
        font-size:14px;
      }

      .mini-card{
        width:170px;
        padding:15px;
      }

      .mini-card h2{
        font-size:24px;
      }

      .form-side h1{
        font-size:30px;
      }

      .social-login{
        flex-direction:column;
      }

      .login-wrapper{
        border-radius:25px;
      }

    }
    
      .password-toggle{
        cursor:pointer;
    }

    .password-toggle:hover{
        color:#d50000;
    }


    .password-toggle{
        cursor:pointer;
    }

    .password-toggle:hover{
        color:#d50000;
    }

    small.text-danger{
        font-size:13px;
        font-weight:500;
    }

