*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}

body{
background:
linear-gradient(135deg,#eef4ff,#f8fafc);
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:25px;
}
/* =========================
CONTAINER
========================= */

.auth-container{

width:100%;
max-width:1150px;
min-height:680px;

background:#ffffff;

border-radius:28px;

overflow:hidden;

display:flex;

box-shadow:
0 25px 60px rgba(15,23,42,.12);

border:1px solid rgba(255,255,255,.4);

transition:.4s ease;

}

.auth-container:hover{

transform:translateY(-3px);

}

/* =========================
LEFT SIDE
========================= */

.auth-left{

    width:45%;

    background:linear-gradient(
        135deg,
        #2563eb 0%,
        #1d4ed8 45%,
        #1e3a8a 100%
    );

    color:#ffffff;

    padding:60px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    position:relative;

    overflow:hidden;

}

/* Decorative circles */

.auth-left::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-120px;

    right:-120px;

}

.auth-left::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    bottom:-80px;

    left:-80px;

}

/* Keep content above decorations */

.auth-left > *{

    position:relative;

    z-index:2;

}

.logo-box img{
width:250px;
margin-left: 50px;
margin-bottom:25px;
}

.auth-left h1{
font-size:38px;
margin-bottom:10px;
}

.auth-left p{
font-size:17px;
opacity:.95;
margin-bottom:30px;
line-height:1.7;
}

.features{
list-style:none;
}

.features li{
padding:10px 0;
font-size:16px;
}

/* =========================
RIGHT SIDE
========================= */

.auth-right{
width:55%;
padding:70px;
display:flex;
flex-direction:column;
justify-content:center;
}

.login-header h2{
font-size:32px;
color:#1e293b;
}

.login-header p{
color:#64748b;
margin-top:8px;
margin-bottom:35px;
}

/* =========================
FORM
========================= */

.form-group{
margin-bottom:20px;
}

.form-group label{
display:block;
margin-bottom:8px;
font-weight:600;
color:#334155;
}

.form-control{
width:100%;
padding:15px;
border:1px solid #cbd5e1;
border-radius:10px;
font-size:15px;
transition:.3s;
}

.form-control:focus{
border-color:#2563eb;
outline:none;
box-shadow:0 0 0 3px rgba(37,99,235,.1);
}

/* =========================
BUTTON
========================= */

.btn-login{
width:100%;
border:none;
padding:15px;
background:#2563eb;
color:#fff;
font-size:16px;
font-weight:600;
border-radius:10px;
cursor:pointer;
transition:.3s;
}

.btn-login:hover

/* =========================
LINKS
========================= */

.forgot-link{
text-align:right;
margin-top:15px;
}

.forgot-link a{
text-decoration:none;
color:#2563eb;
font-size:14px;
}

.forgot-link a:hover{
text-decoration:underline;
}

.register-link{
text-align:center;
margin-top:25px;
color:#64748b;
}

.register-link a{
color:#2563eb;
font-weight:600;
text-decoration:none;
}

.register-link a:hover{
text-decoration:underline;
}

/* =========================
ALERT
========================= */

.alert{
background:#fee2e2;
color:#dc2626;
padding:12px;
margin-bottom:20px;
border-radius:10px;
font-size:14px;
}

/* =========================
TABLET
========================= */

@media(max-width:900px){


.auth-container{
    flex-direction:column;
    max-width:600px;
}

.auth-left,
.auth-right{
    width:100%;
}

.auth-left{
    padding:40px;
    text-align:center;
}

.auth-right{
    padding:40px;
}

.auth-left h1{
    font-size:32px;
}


}

/* =========================
MOBILE
========================= */

@media(max-width:768px){


.auth-left{
    display:none;
}

.auth-right{
    width:100%;
    padding:25px;
}

.login-header h2{
    font-size:26px;
}

.login-header p{
    font-size:14px;
    margin-bottom:25px;
}

.form-control{
    padding:13px;
    font-size:14px;
}

.btn-login{
    padding:13px;
    font-size:15px;
}


}

/* =========================
SMALL PHONES
========================= */

@media(max-width:480px){


body{
    padding:10px;
}

.auth-container{
    border-radius:15px;
}

.auth-right{
    padding:20px 15px;
}

.login-header h2{
    font-size:22px;
}

.login-header p{
    font-size:13px;
}

.form-group{
    margin-bottom:15px;
}

.form-control{
    padding:12px;
    font-size:14px;
}

.btn-login{
    padding:12px;
    font-size:14px;
}

.forgot-link{
    text-align:center;
}


}

/* Prevent horizontal scroll */

html,
body{
overflow-x:hidden;
}
