/* ================= REGISTER PAGE ================= */

.auth-body{
    background:#f5f7fb;
}

.auth-container{
    width:100%;
    min-height:100vh;
    display:flex;
}

/* ================= LEFT SIDE ================= */

.auth-left{
    width:50%;
    background:linear-gradient(
        135deg,
        grey,
        #1e3a8a
    );

    position:relative;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:60px;
}

.overlay{
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-100px;
    right:-100px;
}

.left-content{
    position:relative;
    z-index:2;
    color:white;
}

.brand{
    font-size:32px;
    font-weight:700;
    margin-bottom:30px;
}

.brand i{
    margin-right:10px;
}

.left-content h1{
    font-size:55px;
    line-height:1.3;
    margin-bottom:25px;
}

.left-content p{
    font-size:18px;
    line-height:1.8;
    color:#dbeafe;
    margin-bottom:40px;
}

.features-list div{
    margin-bottom:20px;
    font-size:18px;
    display:flex;
    align-items:center;
    gap:12px;
}

.features-list i{
    color:#93c5fd;
}

/* ================= RIGHT SIDE ================= */

.auth-right{
    width:50%;
    background:white;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
}

.auth-form{
    width:100%;
    max-width:450px;
}

.auth-form h2{
    font-size:40px;
    margin-bottom:10px;
    color:#111827;
}

.auth-form p{
    color:#6b7280;
    margin-bottom:35px;
}

/* ================= INPUTS ================= */

.input-group{
    margin-bottom:22px;
}

.input-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:#374151;
}

.input-box{
    width:100%;
    height:58px;
    border:1px solid #d1d5db;
    border-radius:14px;
    display:flex;
    align-items:center;
    padding:0 18px;
    transition:0.3s;
}

.input-box:focus-within{
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,0.1);
}

.input-box i{
    color:#9ca3af;
    margin-right:12px;
    font-size:18px;
}

.input-box input{
    width:100%;
    border:none;
    outline:none;
    font-size:16px;
    background:none;
}

/* ================= BUTTON ================= */

.auth-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:14px;
    background:#2563eb;
    color:white;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
    margin-top:10px;
}

.auth-btn:hover{
    background:#1746b5;
}

/* ================= ALERTS ================= */

.success-msg{
    background:#dcfce7;
    color:#166534;
    padding:15px;
    border-radius:12px;
    margin-bottom:20px;
}

.error-msg{
    background:#fee2e2;
    color:#991b1b;
    padding:15px;
    border-radius:12px;
    margin-bottom:20px;
}

/* ================= BOTTOM ================= */

.bottom-text{
    margin-top:25px;
    text-align:center;
    color:#6b7280;
}

.bottom-text a{
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.auth-left{
    display:none;
}

.auth-right{
    width:100%;
}

}

@media(max-width:576px){

.auth-form h2{
    font-size:32px;
}

.auth-right{
    padding:25px;
}

}