/* ==================================
   AUTH PAGE
================================== */

.auth-page{
    min-height:100vh;
    background:#f6f6fb;
    position:relative;
}

.auth-wrapper{
    display:flex;
min-height:calc(100vh - 90px);
    align-items:stretch;
}

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

.auth-left{
    width:50%;
    position:relative;
    overflow:hidden;

    background:
    radial-gradient(circle at top right,
    #6d28d9 0%,
    #312e81 30%,
    #0f172a 100%);
}

.auth-content{
    padding:80px 60px;
    max-width:760px;
    margin:auto;
}
.auth-brand{
    position:absolute;
    top:40px;
    left:50px;

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

    z-index:10;

    color:#fff;
    font-size:28px;
    font-weight:800;
}

.brand-icon{
    width:54px;
    height:54px;

    border-radius:16px;

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

    font-size:24px;

    background:linear-gradient(
        135deg,
        #4f46e5,
        #7c3aed
    );
}

.auth-content h1{
    font-size:72px;
    line-height:1.1;
    font-weight:800;

    margin-bottom:30px;
}

.auth-content h1 span{
    color:#7c5cff;
}

.auth-content p{
    max-width:520px;
    font-size:24px;
    line-height:1.7;
    color:rgba(255,255,255,.8);

    margin-bottom:60px;
}

/* ==================================
   SHAPES
================================== */

.auth-bg-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(5px);
}

.shape-1{
    width:700px;
    height:700px;

    background:
    radial-gradient(circle,
    rgba(124,92,255,.8),
    transparent);

    top:-250px;
    right:-250px;
}

.shape-2{
    width:500px;
    height:500px;

    background:
    radial-gradient(circle,
    rgba(79,70,229,.5),
    transparent);

    bottom:-150px;
    left:-100px;
}

/* ==================================
   FEATURES
================================== */

.auth-features{
    margin-top:40px;
}

.feature-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:35px;
}

.feature-icon{
    width:58px;
    height:58px;

    border-radius:18px;

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

    backdrop-filter:blur(10px);

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

    font-size:24px;
}

.feature-item h6{
    margin-bottom:5px;
    font-size:22px;
    font-weight:700;
}

.feature-item span{
    color:rgba(255,255,255,.75);
}

/* ==================================
   UPTIME CARD
================================== */

.uptime-card{
    margin-top:70px;

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

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

    backdrop-filter:blur(20px);

    border-radius:28px;

    padding:25px;

    border:1px solid
    rgba(255,255,255,.1);
}

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

    margin-bottom:20px;

    color:#fff;
    font-weight:600;
}

.status-left{
    display:flex;
    align-items:center;
    gap:10px;
}

.status-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#22c55e;
}

.status-right{
    color:#22c55e;
}

.graph-wrapper svg{
    width:100%;
    height:100px;
}

.graph-days{
    display:flex;
    justify-content:space-between;

    color:rgba(255,255,255,.7);
}

/* ==================================
   RIGHT SIDE
================================== */

.auth-right{
    width:50%;
    min-height:calc(100vh - 90px);

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

    padding:60px;
}

.login-card{
    width:100%;
    max-width:620px;

    background:#fff;

    border-radius:32px;

    padding:60px;

    box-shadow:
    0 40px 100px rgba(0,0,0,.08);
}

.login-logo{
    width:90px;
    height:90px;

    margin:0 auto 30px;

    border-radius:25px;

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

    background:
    linear-gradient(
    135deg,
    #4f46e5,
    #7c3aed);

    color:#fff;
    font-size:42px;
}

.login-card h2{
    text-align:center;
    font-size:48px;
    font-weight:800;

    margin-bottom:10px;
}

.login-card p{
    text-align:center;
    color:#64748b;
    margin-bottom:40px;
}

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

.form-group{
    margin-bottom:24px;
}

.form-group label{
    display:block;
    margin-bottom:10px;

    font-weight:600;
}

.form-control{
    height:64px;

    border-radius:16px;

    border:1px solid #e2e8f0;

    padding:15px 20px;

    font-size:16px;
}

.form-control:focus{
    box-shadow:none;
    border-color:#4f46e5;
}

.auth-submit-btn{
    width:100%;
    height:65px;

    border:none;

    border-radius:18px;

    color:#fff;
    font-weight:700;

    background:
    linear-gradient(
    135deg,
    #4f46e5,
    #9333ea);

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

.auth-submit-btn:hover{
    color:#fff;
}

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

.divider{
    margin:35px 0;
    text-align:center;
    position:relative;
}

.divider:before{
    content:'';
    position:absolute;
    top:50%;
    left:0;
    width:100%;
    height:1px;
    background:#e2e8f0;
}

.divider span{
    position:relative;
    background:#fff;
    padding:0 20px;
    color:#64748b;
}

/* ==================================
   SOCIAL
================================== */

.social-login{
    display:flex;
    gap:15px;
}

.social-btn{
    flex:1;

    height:58px;

    border-radius:16px;

    border:1px solid #e2e8f0;

    background:#fff;

    font-weight:600;
}

.register-link{
    text-align:center;
    margin-top:30px;
}

.register-link a{
    text-decoration:none;
    color:#4f46e5;
    font-weight:700;
}

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



/* ==================================
   MOBILE
================================== */

@media(max-width:1200px){

    .auth-content h1{
        font-size:56px;
    }

}

@media(max-width:992px){

    .auth-wrapper{
        flex-direction:column;
    }

    .auth-left,
    .auth-right{
        width:100%;
    }

    .auth-content{
        padding:120px 30px 50px;
    }

    .auth-right{
        padding:30px;
    }

    .login-card{
        padding:35px;
    }

    .social-login{
        flex-direction:column;
    }

}

@media(max-width:768px){

    .auth-content h1{
        font-size:42px;
    }

    .login-card h2{
        font-size:32px;
    }

    .auth-brand{
        left:25px;
    }

}

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


.footer-wave{
    position:relative;
    line-height:0;
    margin-top:-220px;
    z-index:50;
}

.footer-wave svg{
    width:100%;
    height:100%;
    display:block;
}

.wave-glow{
    fill:#7c3aed;
}

.wave-main{
    fill:#030B1E;
}

.footer-modern{
    margin-top:-2px;
    padding-top:80px;
    background:
    radial-gradient(
        circle at top left,
        rgba(124,92,255,.15),
        transparent 35%
    ),
    radial-gradient(
        circle at bottom right,
        rgba(99,102,241,.15),
        transparent 35%
    ),
    #0B1120;
}