*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}

body{
background:#f1f5f9;
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:20px;
}

/* =========================
CONTAINER
========================= */

.auth-container{
width:100%;
max-width:1100px;
min-height:650px;
background:#fff;
border-radius:20px;
overflow:hidden;
display:flex;
box-shadow:0 15px 40px rgba(0,0,0,.12);
}

/* =========================
LEFT SIDE
========================= */

.auth-left{
width:45%;
background:linear-gradient(135deg,#2563eb,#1e40af);
color:#fff;
padding:60px;
display:flex;
flex-direction:column;
justify-content:center;
}

.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;
}
