.modern-login-section{
    padding:40px 0;
    
}

.modern-login-wrapper{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
    align-items:stretch;
}

/* LEFT BANNER */

.modern-login-banner{
    position:relative;
    min-height:820px;
    height:100%;
}

.modern-login-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.82),
        rgba(0,0,0,0.15)
    );
}

/* TOP HEADER */

.banner-top-content{
    position:absolute;
    top:35px;
    left:35px;
    right:35px;
    z-index:3;

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

.welcome-back-text{
    color:#fff;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.banner-login-title{
    font-size:40px;
    font-weight:800;
    color:#fff;
    margin:0;
    line-height:1;
}

/* BOTTOM CONTENT */

.banner-content{
    position:absolute;
    left:35px;
    bottom:50px;
    z-index:2;
    color:#fff;
    max-width:500px;
}

.mini-tag{
    display:inline-block;
    color:#df0e13;
    font-weight:700;
    letter-spacing:2px;
    font-size:13px;
    margin-bottom:18px;
    text-transform:uppercase;
}

.banner-content h2{
    font-size:50px;
    line-height:1;
    font-weight:800;
    color:#fff;
    margin-bottom:20px;
}

.banner-content p{
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,0.9);
    margin-bottom:30px;
}

/* FEATURES */

.banner-features{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:14px;
    font-weight:600;

    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    backdrop-filter:blur(8px);

    padding:12px 18px;
    border-radius:50px;
}

.feature-item i{
    color:#df0e13;
    font-size:18px;
}

/* RIGHT FORM */

.modern-login-card{
    padding:60px 45px;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    background:#fff;
}

/* HEADER */

.login-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:45px;
}

.welcome-text{
    color:#df0e13;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.login-title{
    font-size:40px;
    font-weight:700;
    margin:0;
    line-height:1;
    color:#111;
}

/* FORM */

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

.form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:#111;
    font-size:15px;
}

.form-group input,
.form-group select{
    width:100%;
    height:50px;
    border:1px solid #e3e3e3;
    border-radius:5px;
    padding:0 18px;
    font-size:15px;
    background:#fafafa;
    transition:0.3s;
}

.form-group input:focus,
.form-group select:focus{
    border-color:#df0e13;
    /*box-shadow:0 0 0 4px rgba(223,14,19,0.08);
    background:#fff;*/
    outline:none;
}

.form-group select{
    background:
        #fafafa
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6 6 6-6' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
        no-repeat right 15px center;
    padding-right:45px;
}

.forgot-wrap{
    margin-bottom:28px;
    text-align:right;
}

.forgot-wrap a{
    color:#df0e13;
    font-weight:600;
    text-decoration:none;
    font-size:14px;
}

/* BUTTONS */

.modern-login-btn{
    width:100%;
    height:50px;
    border:none;
    border-radius:14px;
    background:#df0e13;
    color:#fff;
    font-size:15px;
    font-weight:700;
    transition:0.3s;
    letter-spacing:1px;
}

.modern-login-btn:hover{
    background:#b9080d;
}

.modern-register-btn{
    width:100%;
    height:50px;
    border:2px solid #df0e13;
    border-radius:14px;

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

    margin-top:16px;

    color:#df0e13;
    font-size:15px;
    font-weight:700;
    text-decoration:none;
    transition:0.3s;
    letter-spacing:1px;
}

.modern-register-btn:hover{
    background:#df0e13;
    color:#fff;
}

/* BOTTOM FEATURES */

.login-bottom-features{
    display:flex;
    justify-content:space-between;
    gap:15px;
    margin-top:40px;
}

.bottom-item{
    flex:1;
    text-align:center;
    padding:18px 10px;
    border-radius:18px;
    background:#fafafa;
    border:1px solid #f0f0f0;
}

.bottom-item i{
    font-size:22px;
    color:#df0e13;
    margin-bottom:10px;
    display:block;
}

.bottom-item span{
    display:block;
    font-size:13px;
    font-weight:600;
    color:#444;
}

/* MOBILE */

@media(max-width:991px){

    .modern-login-banner{
        min-height:520px;
    }

    .banner-top-content{
        top:25px;
        left:25px;
        right:25px;
    }

    .banner-login-title{
        font-size:35px;
    }

    .banner-content{
        left:25px;
        bottom:30px;
        max-width:320px;
    }

    .banner-content h2{
        font-size:35px;
    }

    .banner-content p{
        font-size:15px;
    }

    .modern-login-card{
        padding:40px 25px;
    }

    .login-title{
        font-size:35px;
    }

    .login-bottom-features{
        flex-direction:column;
    }

}

@media(max-width:575px){

    .modern-login-wrapper{
        border-radius:20px;
    }

    .banner-content h2{
        font-size:24px;
    }

    .banner-features{
        gap:12px;
    }

    .feature-item{
        width:100%;
        justify-content:center;
    }

    .login-top{
        margin-bottom:35px;
    }

    .login-title{
        font-size:24px;
    }

}
.register-check{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:25px;
}

.register-check input{
    width:18px;
    height:18px;
    accent-color:#df0e13;
}

.register-check label{
    margin:0;
    font-size:14px;
    color:#555;
    font-weight:500;
}