/*====================================================
    GOOGLE FONT
=====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/*====================================================
    ROOT
=====================================================*/

:root{

    --primary:#6C2BD9;
    --primary-light:#8B5CF6;
    --primary-dark:#4C1D95;

    --secondary:#F6F5FF;

    --white:#ffffff;

    --text:#1F2937;
    --text-light:#6B7280;

    --border:#E8E8F3;

    --success:#22C55E;

    --shadow:0 20px 60px rgba(108,43,217,.12);

    --radius:22px;

}

/*====================================================
    RESET
=====================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    background:#f5f4ff;
    color:var(--text);
    overflow-x:hidden;

}

/*====================================================
BACKGROUND
=====================================================*/

.bg-shape{

    position:fixed;
    border-radius:50%;
    filter:blur(60px);
    z-index:-1;

}

.bg-shape-1{

    width:380px;
    height:380px;
    background:#E7DBFF;
    top:-120px;
    left:-80px;

}

.bg-shape-2{

    width:320px;
    height:320px;
    background:#D9ECFF;
    right:-100px;
    top:140px;

}

.bg-shape-3{

    width:280px;
    height:280px;
    background:#F3D9FF;
    bottom:-80px;
    left:45%;

}

/*====================================================
LOGIN SECTION
=====================================================*/

.login-section{

    min-height:100vh;

    display:flex;

    align-items:stretch;

    padding:0;

}

.login-section .container-fluid{

    display:flex;

    flex-direction:column;

}

.login-row{

    background:#fff;

    overflow:hidden;

    flex:1;

    box-shadow:0 30px 80px rgba(0,0,0,.08);

    align-items:center;

}

/*====================================================
LEFT SIDE
=====================================================*/

.branding-side{

    height:100%;

    padding:32px;

    background:linear-gradient(140deg,#4C1D95,#6C2BD9);

    color:#fff;

    position:relative;

    overflow:hidden;

}

.branding-side::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-180px;

    right:-120px;

}

.branding-side::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    background:rgba(255,255,255,.06);

    border-radius:50%;

    bottom:-120px;

    left:-80px;

}

.logoImg{
    width: 200px;
    height:auto;
    padding-bottom: 30px;

}

.welcome-tag{

    display:inline-block;

    padding:8px 20px;

    border-radius:40px;

    background:rgba(255,255,255,.18);

    font-size:14px;

    margin-bottom:25px;

}

.branding-content h1{

    font-size:52px;

    line-height:1.2;

    font-weight:800;

    margin-bottom:25px;

}

.branding-content h1 span{

    color:#FDE68A;

}

.branding-content p{

    max-width:520px;

    line-height:1.9;

    font-size:16px;

    opacity:.88;

}



/*====================================================
SECURE INFO
=====================================================*/

.secure-info{

    display:flex;

    align-items:center;

    gap:15px;

    margin-top:45px;

}

.secure-icon{

    width:55px;

    height:55px;

    border-radius:16px;

    background:rgba(255,255,255,.18);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

}

.secure-info h6{

    margin:0;

    font-weight:700;

}

.secure-info p{

    margin:4px 0 0;

    opacity:.85;

    font-size:14px;

}
/*====================================================
LOGIN CARD
=====================================================*/

.login-card{

    width:100%;
    /* max-width:520px; */
    margin:auto;
    /* background:#fff; */
    border-radius:28px;
    padding:15px !important;
    /* box-shadow:0 25px 70px rgba(0,0,0,.08); */
}

/* .login-header{

    margin-bottom:35px;

} */

.login-header h2{
    font-size:38px;
    font-weight:800;
    color:var(--text);
    margin-bottom:10px;

}

.login-header p{

    color:var(--text-light);
    margin:0;
    line-height:1.8;

}

/*====================================================
FORM
=====================================================*/

.form-group label{

    display:block;

    margin-bottom:10px;

    font-weight:600;

    color:var(--text);

}

.input-box{

    position:relative;

}

.input-box i{

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    color:#9CA3AF;

    font-size:18px;

}

.input-box .form-control{

    height:58px;

    border:1px solid var(--border);

    border-radius:16px;

    padding-left:50px;

    font-size:15px;

    box-shadow:none;

    transition:.3s;

}

.input-box .form-control:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(108,43,217,.12);

}

.input-box .form-control::placeholder{

    color:#A5A8B5;

}

/*====================================================
BUTTON
=====================================================*/

.login-btn{

    width:100%;

    height:58px;

    border:none;

    border-radius:16px;

    background:linear-gradient(135deg,var(--primary),var(--primary-light));

    color:#fff;

    font-size:17px;

    font-weight:700;

    transition:.35s;

}

.login-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 40px rgba(108,43,217,.28);

}

/*====================================================
DIVIDER
=====================================================*/

.divider{

    position:relative;

    text-align:center;

    margin:32px 0;

}

.divider::before{

    content:"";

    position:absolute;

    left:0;

    top:50%;

    width:100%;

    height:1px;

    background:#ECECEC;

}

.divider span{

    background:#fff;

    padding:0 18px;

    position:relative;

    color:#9CA3AF;

    font-size:14px;

}

/*====================================================
GOOGLE BUTTON
=====================================================*/

.google-btn{

    width:100%;

    height:56px;

    border-radius:16px;

    border:1px solid var(--border);

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    font-weight:600;

    transition:.3s;

}

.google-btn:hover{

    background:#F8F8FF;

    border-color:var(--primary);

}

/*====================================================
FOOTER
=====================================================*/

.login-footer{

    text-align:center;

    margin-top:35px;

}

.login-footer p{

    margin:0;

    color:var(--text-light);

}

.login-footer a{

    text-decoration:none;

    color:var(--primary);

    font-weight:600;

}

/*====================================================
HOVER
=====================================================*/

.preview-card,
.login-card,
.mini-card{

    transition:.35s;

}

.preview-card:hover{

    transform:translateY(-8px);

}

.mini-card:hover{

    transform:translateY(-6px);

}

.logo-icon:hover{

    transform:rotate(8deg);

}

/*====================================================
RESPONSIVE
=====================================================*/

@media(max-width:1600px){

.branding-content h1{

font-size:46px;

}

.login-card{

max-width:500px;

}

}

@media(max-width:1400px){

.branding-side{

padding:50px;

}

.login-card{

padding:45px;

}

}

@media(max-width:1200px){

.branding-content h1{

font-size:40px;

}

.login-card{

padding:40px;

}

}

@media(max-width:991px){

.login-row{

border-radius:24px;

}

.login-card{

max-width:100%;

padding:40px 35px;

}

}

@media(max-width:768px){

.login-card{

padding:35px 25px;

border-radius:22px;

}

.login-header h2{

font-size:30px;

}

.login-options{

flex-direction:column;

align-items:flex-start;

gap:15px;

}

}

@media(max-width:576px){

.login-card{

padding:28px 20px;

}

.login-header h2{

font-size:28px;

}

.input-box .form-control{

height:54px;

}

.login-btn{

height:54px;

}

.google-btn{

height:54px;

}

}

@media(max-width:375px){

.login-card{

padding:22px 16px;

}

.login-header h2{

font-size:24px;

}

.login-header p{

font-size:14px;

}

.form-group label{

font-size:14px;

}

.login-btn{

font-size:15px;

}

.google-btn{

font-size:14px;

}

}




/*=========================================
LOGIN ILLUSTRATION
==========================================*/

.login-illustration{

    display:flex;
    justify-content:center;
    align-items:center;

    margin-top:50px;

}

.login-illustration img{

    width:100%;
    max-width:500px;

    animation:floatImage 5s ease-in-out infinite;

    user-select:none;

}

@keyframes floatImage{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }

}

.FormDetailsSide{
    /* max-height: 920px !important; */
    overflow: auto;
    padding: 20px;
}






/* ===== Signup Header ===== */

.rc-signup-header{
    position:relative;
    display:flex;
    align-items:center;
    gap:22px;
    padding:30px;
    border-radius:18px;
    overflow:hidden;
    background:linear-gradient(135deg,#4c1d95,#6d28d9,#7c3aed);
    box-shadow:0 18px 40px rgba(109,40,217,.18);
}

.rc-signup-header::before{
    content:"";
    position:absolute;
    right:-70px;
    top:-70px;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}

.rc-signup-header::after{
    content:"";
    position:absolute;
    left:-40px;
    bottom:-40px;
    width:140px;
    height:140px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
}

.rc-signup-icon{
    position:relative;
    z-index:2;
    min-width:78px;
    width:78px;
    height:78px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.2);
}

.rc-signup-icon i{
    font-size:34px;
    color:#fff;
}

.rc-signup-content{
    position:relative;
    z-index:2;
}

.rc-signup-badge{
    display:inline-block;
    margin-bottom:10px;
    padding:5px 12px;
    border-radius:30px;
    background:rgba(255,255,255,.15);
    color:#fff;
    font-size:12px;
    font-weight:600;
    letter-spacing:.5px;
}

.rc-signup-content h2{
    margin:0 0 10px;
    color:#fff;
    font-size:32px;
    font-weight:700;
    line-height:1.2;
}

.rc-signup-content p{
    margin:0;
    /* max-width:520px; */
    color:rgba(255,255,255,.85);
    font-size:15px;
    line-height:1.7;
}

/* ================= Responsive ================= */

@media(max-width:768px){

    .rc-signup-header{
        padding:22px;
        flex-direction:column;
        text-align:center;
    }

    .rc-signup-icon{
        width:65px;
        height:65px;
        min-width:65px;
    }

    .rc-signup-icon i{
        font-size:28px;
    }

    .rc-signup-content h2{
        font-size:26px;
    }

    .rc-signup-content p{
        max-width:100%;
        font-size:14px;
    }

}

@media(max-width:576px){

    .rc-signup-header{
        padding:18px;
        border-radius:15px;
    }

    .rc-signup-content h2{
        font-size:22px;
    }

    .rc-signup-content p{
        font-size:13px;
    }

}

.social-connect-wrapper{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.social-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:14px;
    padding:18px;
    transition:.3s;
}

.social-card:hover{
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.social-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.social-platform{
    display:flex;
    align-items:center;
    gap:14px;
}

.social-platform h6{
    margin:0;
    font-weight:700;
}

.social-platform small{
    color:#888;
}

.social-icon{
    width:52px;
    height:52px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
}
.social-card{
    width:100%;
    background:#fff;
    border:1px solid #e9e9ef;
    border-radius:14px;
    padding:18px 20px;
    transition:.3s ease;
}

.social-card:hover{
    border-color:#6a0dad;
    box-shadow:0 10px 25px rgba(106,13,173,.08);
}

.whatsapp{
    background:#25D366;
}

.instagram{
    background:linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4);
}

.google{
    background:#4285F4;
}

.facebook{
    background:#1877F2;
}

.social-btn{
    border:none;
    background:#6a0dad;
    color:#fff;
    border-radius:8px;
    padding:9px 18px;
    font-weight:600;
    transition:.3s;
}

.social-btn:hover{
    background:#5720c2;
}

.social-btn.connected{
    background:#22c55e;
}

.social-info{
    margin-top:15px;
    display:none;
    border-top:1px solid #eee;
    padding-top:15px;
    animation:fadeIn .35s;
}

.social-info.show{
    display:block;
}

.social-info label{
    display:block;
    color:#777;
    font-size:13px;
    margin-bottom:4px;
}

.social-info span{
    font-weight:600;
    color:#222;
}

@keyframes fadeIn{

from{
opacity:0;
transform:translateY(-8px);
}

to{
opacity:1;
transform:translateY(0);
}

}
