/*=========================================
            GOOGLE FONT
=========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=========================================
            RESET
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/*=========================================
            PAGE
=========================================*/

.auth-page{
    min-height:100vh;
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#04162E;
}

/*=========================================
            LEFT PANEL
=========================================*/

.auth-left{
    position:relative;
    background:url("/image/auth-bg.jpg") center center/cover no-repeat;
    display:flex;
    align-items:center;
    padding:80px;
}

.auth-left::before{
    content:"";
    position:absolute;
    inset:0;
    /*background:linear-gradient(
        135deg,
        rgba(4,22,46,.94),
        rgba(10,45,90,.88)
    );*/
}

.auth-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(26,141,255,.12);
    border:1px solid rgba(26,141,255,.3);
    color:#7CC8FF;
    margin-bottom:25px;
}

.auth-content h1{
    font-size:52px;
    line-height:1.2;
    margin-bottom:20px;
}

.auth-content p{
    color:#d2deec;
    line-height:1.8;
    margin-bottom:35px;
}

.auth-content ul{
    list-style:none;
}

.auth-content li{
    display:flex;
    gap:12px;
    align-items:center;
    margin-bottom:18px;
}

.auth-content i{
    color:#FFD447;
}

/*=========================================
            RIGHT PANEL
=========================================*/

.auth-right{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:50px;
}

/*=========================================
            CARD
=========================================*/

.signup-card{
    width:100%;
    max-width:500px;
    padding:40px;
    border-radius:24px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.card-header{
    text-align:center;
    margin-bottom:30px;
}

.card-header h2{
    font-size:34px;
    color:#fff;
    margin-bottom:10px;
}

.card-header p{
    color:#BFD2E7;
}

/*=========================================
            FORM
=========================================*/

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    color:#fff;
    font-weight:500;
}

.form-group input{
    width:100%;
    height:56px;
    border:none;
    outline:none;
    border-radius:14px;
    background:#0B2344;
    color:#fff;
    padding:0 18px;
    transition:.3s;
}

.form-group input:focus{
    border:1px solid #1A8DFF;
    box-shadow:0 0 12px rgba(26,141,255,.3);
}

.form-group input::placeholder{
    color:#8CA7C2;
}

/*=========================================
        PASSWORD
=========================================*/

.password-box{
    position:relative;
}

.password-box input{
    padding-right:55px;
}

.toggle-password{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    background:none;
    border:none;
    cursor:pointer;
    color:#8CA7C2;
    font-size:18px;
}

.toggle-password:hover{
    color:#1A8DFF;
}

/*=========================================
        TERMS
=========================================*/

.remember{
    margin:18px 0 25px;
    color:#d2deec;
    font-size:14px;
}

.remember a{
    color:#46B5FF;
    text-decoration:none;
}

/*=========================================
        BUTTON
=========================================*/

.signup-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#1A8DFF,#0A6DFF);
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.signup-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(26,141,255,.35);
}

/*=========================================
        DIVIDER
=========================================*/

.divider{
    position:relative;
    margin:30px 0;
    text-align:center;
}

.divider::before{
    content:"";
    position:absolute;
    width:100%;
    height:1px;
    background:rgba(255,255,255,.08);
    top:50%;
    left:0;
}

.divider span{
    position:relative;
    background:#102949;
    padding:0 15px;
    color:#9FB6D4;
}

/*=========================================
        GOOGLE BUTTON
=========================================*/

.google-btn{
    width:100%;
    height:56px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    background:#fff;
    color:#333;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.google-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(255,255,255,.18);
}

/*=========================================
        LOGIN
=========================================*/

.bottom-text{
    margin-top:25px;
    text-align:center;
    color:#BFD2E7;
}

.bottom-text a{
    color:#46B5FF;
    text-decoration:none;
    font-weight:600;
}

/*=========================================
        ERROR
=========================================*/

.alert-error{
    background:#ffebee;
    color:#c62828;
    padding:14px;
    border-radius:10px;
    margin-bottom:20px;
    text-align:center;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:992px){

    .auth-page{
        grid-template-columns:1fr;
    }

    .auth-left{
        display:none;
    }

    .auth-right{
        padding:20px;
    }

}

@media(max-width:576px){

    .signup-card{
        padding:25px;
        border-radius:18px;
    }

    .card-header h2{
        font-size:28px;
    }

    .signup-btn,
    .google-btn{
        height:54px;
    }

    .form-group input{
        height:54px;
    }

}