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

*{
    box-sizing:border-box;
}

body.login-page{

    margin:0;
    padding:0;

    font-family:'Open Sans',sans-serif;

    background:#fff;
    color:#1F2937;

    overflow-x:hidden;

}

.login-layout{
    display:flex;
    min-height:100vh;
}


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

.login-left{
    width: 580px;
    min-height: 100vh;

    padding: 40px;

    background: #fff;
    border-right: 1px solid rgba(124,92,252,.08);
    
    display:flex;
    justify-content:center;
    align-items:center;
    overflow-y:auto;
}

.login-content{

    width:480px;

}

.login-logo{

    display:inline-block;

    margin-bottom:45px;

}

.login-logo img{

    width:200px;
    display:block;

}

.login-content h1{

    margin:0;

    font-size:34px;
    font-weight:800;

    line-height:1.1;

    letter-spacing:-1px;

}

.login-intro{
    margin:18px 0 42px;
    color:#6B7280;
    font-size:14px;
    line-height:34px;

}


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

.login-form{

    background:#fff;

    border:1px solid #ECEEF6;

    border-radius:28px;

    padding:38px;

    box-shadow:
    0 25px 70px rgba(46,42,92,.08);

}

.login-form label{

    display:block;

    margin-bottom:10px;

    font-size:14px;
    font-weight:700;

}

.login-form input{

    width:100%;
    height:60px;

    padding:0 22px;

    margin-bottom:22px;

    border:1px solid #D8DFEC;

    border-radius:16px;

    background:#fff;

    font-size:16px;

    transition:.25s;

    box-sizing:border-box;

}

.login-form input:focus{

    outline:none;

    border-color:#7C5CFC;

    box-shadow:0 0 0 5px rgba(124,92,252,.10);

}

.login-options{

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

    margin-bottom:28px;

}

.remember-me{

    display:flex;
    align-items:center;
    gap:10px;

    color:#6B7280;

}

.remember-me input{

    width:auto;
    height:auto;
    margin:0;

}

.login-options a{

    color:#7C5CFC;

    font-weight:600;

    text-decoration:none;

}

.login-button{

    width:100%;
    height:60px;

    border:none;

    border-radius:16px;

    background:linear-gradient(135deg,#8B5CF6,#6D4CFF);

    color:#fff;

    font-size:18px;
    font-weight:700;

    cursor:pointer;

    transition:.25s;

}

.login-button:hover{

    transform:translateY(-2px);

    box-shadow:0 18px 35px rgba(124,92,252,.28);

}

.login-register{

    margin-top:34px;

    text-align:center;

    color:#6B7280;

}

.login-register a{

    color:#7C5CFC;

    font-weight:700;

    text-decoration:none;

}


/* ==========================================================
   RIGHT
========================================================== */
body.register-page .hero{
    text-align: left;
    max-width: 100%;
    font-weight: bold;
    position: relative;
    height: 100%;
    overflow: hidden;
}
body.register-page .hero-image{
    position:absolute;

    width:350px;

    left:200px;
    bottom:80px;

    filter:drop-shadow(0 18px 35px rgba(0,0,0,.22));

    z-index:20;
}

body.register-page .hero p{
    color:#000;
}

body.register-page .login-right{
    padding:0px;
}

body.register-page h2{
    margin-top:50px;
    margin-left:50px;
}

.login-right{

    position:fixed;

    top:0;
    right:0;

    width:calc(100% - 580px);
    height:100vh;

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

    padding:80px;

    overflow:hidden;

    background:#fff;

}

body.register-page .login-right{

    background:
        #fff
        url('/images/bg.png')
        top center
        no-repeat;

    background-size:cover;

    justify-content: start;
    text-align: left;
    align-items: normal;

}

.login-right:before{

    content:"";

    position:absolute;

    width:1100px;
    height:1100px;

    border-radius:50%;

    background:radial-gradient(circle,
        rgba(124,92,252,.10) 0%,
        rgba(124,92,252,.04) 45%,
        rgba(255,255,255,0) 75%
    );

    top:-420px;
    left:50%;

    transform:translateX(-50%);

    filter:blur(10px);

    pointer-events:none;

}

.hero{

    position:relative;

    z-index:2;

    text-align:center;

    max-width:920px;

}

.hero h2{

    max-width:620px;

    margin:0 auto;

    font-size:40px;
    line-height:1.15;
    letter-spacing:-0.8px;
    font-weight:800;

}

.hero h2 span{
    color: #7C5CFC;
}

.hero p{

    max-width:700px;

    margin:18px auto 30px;

    font-size:17px;
    line-height:30px;

    color:#6b7280;

}

.hero-image{

    max-width:min(700px,70vh);

}

.hero-rotate{
    display:inline-block;
    overflow:hidden;
    height:1.2em;
    line-height:1.2em;
    vertical-align:bottom;
    color:#FB923C;
    font-weight:700;

}

.hero-rotate-inner{
    transition:transform .45s cubic-bezier(.77,0,.175,1);
}

.hero-rotate-inner > div{
    height:1.2em;
    line-height:1.2em;
    font-weight:700;
    color:#FB923C;
}

/* ==========================================================
   REGISTER
========================================================== */

.login-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;

    margin-bottom:24px;

    background:#F4F1FF;

    color:#7C5CFC;

    border:1px solid rgba(124,92,252,.12);

    border-radius:999px;

    font-size:14px;
    font-weight:700;

}

.login-badge i{

    font-size:18px;

}

.grid-2{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

}

.grid-2 input{

    margin-bottom:0;

}

.grid-2 > div{

    margin-bottom:22px;

}

.login-form small{

    display:block;

    margin:-10px 0 22px;

    color:#6B7280;

    font-size:13px;

    line-height:22px;

}

.login-form select{

    width:100%;
    height:60px;

    padding:0 22px;

    margin-bottom:22px;

    border:1px solid #D8DFEC;

    border-radius:16px;

    background:#fff;

    font-size:16px;

    box-sizing:border-box;

    transition:.25s;

    appearance:none;

}

.login-form select:focus{

    outline:none;

    border-color:#7C5CFC;

    box-shadow:0 0 0 5px rgba(124,92,252,.10);

}

.register-steps{

    margin-top:32px;

    display:flex;
    flex-direction:column;
    gap:14px;

}

.register-step{

    display:flex;
    align-items:center;

    gap:16px;

    color:#4B5563;

    font-size:15px;

    font-weight:600;

}

.register-step span{

    width:34px;
    height:34px;

    flex-shrink:0;

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

    border-radius:50%;

    background:#F4F1FF;

    color:#7C5CFC;

    font-size:15px;

    font-weight:800;

}

.login-button{

    margin-top:8px;

}


/* ==========================================================
   USP
========================================================== */

.hero-usp{

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

    gap:18px;

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

    margin-top:40px;

}

.usp{

    flex:1;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;

    padding:22px 18px;

    background:rgba(255,255,255,.75);
    backdrop-filter:blur(12px);

    border:1px solid rgba(124,92,252,.08);
    border-radius:22px;

    transition:.25s;

}

.usp:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(46,42,92,.08);

    border-color:rgba(124,92,252,.18);

}

.usp-icon{

    width:60px;
    height:60px;

    border-radius:18px;

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

    margin-bottom:18px;

}

.usp-icon i{

    font-size:28px;

}

.usp h3{

    margin:0;

    font-size:16px;
    line-height:24px;
    font-weight:700;

    color:#1F2937;

    text-align:center;

}

@media (max-height:900px){

    .hero-usp{

        gap:14px;
        margin-top:25px;

    }

    .usp{

        padding:18px 14px;

    }

    .usp-icon{

        width:52px;
        height:52px;

        margin-bottom:14px;

    }

    .usp-icon i{

        font-size:24px;

    }

    .usp h3{

        font-size:15px;
        line-height:22px;

    }

}


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

@media(max-width:1300px){

    .login-left{

        width:42%;
        min-width:420px;

    }

    .hero h2{

        font-size:48px;

    }

    .hero p{

        font-size:20px;

    }

    .hero-image{

        max-width:820px;

    }

}

@media(max-width:980px){

    .login-layout{

        display:block;

    }

    .login-left{

        width:100%;
        min-width:100%;

        border-right:none;

    }

    .login-right{

        display:none;

    }

    .login-content{

        width:90%;
        max-width:430px;

        padding:70px 0;

    }

}