*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}

body{
overflow:hidden;
}

.login-page{

height:100vh;

background:
linear-gradient(
135deg,
#d42027,
#000000
);

position:relative;

display:flex;
align-items:center;
justify-content:center;
}

.overlay{

position:absolute;
width:100%;
height:100%;

background:
url("https://images.unsplash.com/photo-1521791136064-7986c2920216")
center center/cover;

opacity:.08;
}

.login-container{

width:1200px;

display:flex;

align-items:center;
justify-content:space-between;

position:relative;
z-index:2;
}
/* ==========================
   LEFT SIDE IMPROVEMENTS
========================== */

.login-left{
    width:45%;
    color:white;
    animation: slideInLeft 1s ease-out;
}

.login-left img{
    width:130px;
    margin-bottom:25px;

    filter:
    drop-shadow(0 10px 25px rgba(0,0,0,.25));

    transition:.4s ease;
}

.login-left img:hover{
    transform:scale(1.05);
}

.login-left h1{
    font-size:58px;
    line-height:1.1;
    margin-bottom:20px;

    font-weight:800;
    letter-spacing:1px;

    text-shadow:
    0 4px 15px rgba(0,0,0,.30);
}

.login-left h2{
    font-size:30px;
    line-height:1.5;
    margin-bottom:25px;

    font-weight:400;

    color:rgba(255,255,255,.95);
}

.login-left p{
    font-size:18px;
    line-height:1.9;

    color:rgba(255,255,255,.85);

    max-width:550px;
}

/* Decorative accent line */
.login-left h1::after{
    content:"";

    display:block;

    width:120px;
    height:5px;

    background:white;

    border-radius:20px;

    margin-top:18px;
}

/* Entrance Animation */
@keyframes slideInLeft{

    from{
        opacity:0;
        transform:translateX(-60px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

.login-card{

width:430px;

background:
rgba(255,255,255,.95);

backdrop-filter:blur(10px);

padding:40px;

border-radius:25px;

box-shadow:
0 20px 60px
rgba(0,0,0,.2);
}

.login-header{

text-align:center;
margin-bottom:30px;
}

.login-header i{

font-size:50px;
color:#d42027;
margin-bottom:15px;
}

.login-header h2{

font-size:30px;
margin-bottom:8px;
}

.login-header p{
color:#777;
}

.form-group{
    margin-bottom:5px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#333;
}

.form-group input,
.form-group select{
    width:100%;
    height:55px;
    padding:0px 15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    background:#fff;
    transition:all .3s ease;
}

.form-group input:focus,
.form-group select:focus{
    outline:none;
    border-color:#d42027;
    box-shadow:0 0 15px rgba(212,32,39,.2);
}

.options{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    font-size:14px;
}

.options label{
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
}

.options input[type="checkbox"]{
    width:16px;
    height:16px;
}

.options a{
    text-decoration:none;
    color:#d42027;
    font-weight:600;
}

.options a:hover{
    text-decoration:underline;
}

.login-btn{
    width:100%;
    height:60px;
     margin-bottom: 10px;
    background:linear-gradient(
        135deg,
        #d42027,
        #c88c22
    );
    border:none;
    border-radius:12px;
    color:white;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.4s;
}

.login-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 25px rgba(212,32,39,.25);
}

.login-btn i{
    margin-right:10px;
}


.input-box{
    position:relative;
    display:flex;
    align-items:center;
    margin-bottom: 15px;

    border:2px solid #e5e5e5;
    border-radius:12px;
    background:#fff;

    transition:.3s;
}

.input-box i{
    position:absolute;
    left:15px;
    color:#d42027;
    font-size:16px;
   
}

.input-box input{
    width:100%;
    padding:16px 15px 16px 45px;

    border:none;
    outline:none;

    background:transparent;
    font-size:15px;
}

.input-box:focus-within{
    border-color:#d42027;
    box-shadow:0 0 20px rgba(212,32,39,.2);
    transform:scale(1.02);
}

/* ================= MODAL BUTTON ROW ================= */
.modal-actions{
    display:flex;
    gap:12px;
    justify-content:center;
    margin-top:10px;
}

/* BACK BUTTON */
.modal-back-btn{
    flex:1;
    padding:10px 15px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    font-weight:600;
    background:#e0e0e0;
    color:#333;
    transition:.3s;
}

.modal-back-btn:hover{
    background:#cfcfcf;
}

/* CONTINUE BUTTON */
.modal-continue-btn{
    flex:1;
    padding:10px 15px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    font-weight:600;
    background:linear-gradient(135deg,#d42027,#c88c22);
    color:white;
    transition:.3s;
}

.modal-continue-btn:hover{
    transform:scale(1.05);
}

.modal-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.modal-box{
    width:380px;
    background:white;
    padding:25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 25px 60px rgba(0,0,0,0.3);
}