*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
-webkit-tap-highlight-color:transparent;
}

body{
background:#f4f7ff;
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:20px;
}

.auth-container{
width:100%;
max-width:430px;
}

.auth-top{
text-align:center;
margin-bottom:30px;
}

.auth-logo{
height:65px;
margin-bottom:20px;
}

.auth-top h1{
font-size:34px;
font-weight:700;
color:#111827;
margin-bottom:10px;
}

.auth-top p{
font-size:15px;
color:#666;
}

.auth-card{
background:#fff;
padding:28px;
border-radius:30px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.input-group{
margin-bottom:22px;
}

.input-group label{
display:block;
font-size:14px;
font-weight:600;
margin-bottom:10px;
color:#111827;
}

.input-box{
height:58px;
background:#f4f7ff;
border-radius:18px;
display:flex;
align-items:center;
padding:0 18px;
border:2px solid transparent;
transition:0.3s;
}

.input-box:focus-within{
border-color:#1158ff;
background:#fff;
}

.input-box i{
font-size:20px;
color:#1158ff;
margin-right:12px;
}

.input-box input{
border:none;
background:none;
outline:none;
width:100%;
font-size:15px;
color:#111;
}

.auth-row{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:25px;
font-size:14px;
}

.remember{
display:flex;
align-items:center;
gap:8px;
color:#555;
}

.auth-row a{
color:#1158ff;
text-decoration:none;
font-weight:600;
}

.auth-btn{
width:100%;
height:58px;
border:none;
border-radius:18px;
background:linear-gradient(135deg,#003cff,#1f8bff);
color:#fff;
font-size:16px;
font-weight:700;
cursor:pointer;
box-shadow:0 10px 25px rgba(17,88,255,0.25);
transition:0.3s;
}

.auth-btn:active{
transform:scale(0.98);
}

.bottom-link{
margin-top:25px;
text-align:center;
font-size:14px;
color:#555;
}

.bottom-link a{
color:#1158ff;
text-decoration:none;
font-weight:700;
margin-left:5px;
}

/* MOBILE */

@media(max-width:480px){

.auth-card{
padding:22px;
border-radius:24px;
}

.auth-top h1{
font-size:28px;
}

.input-box{
height:54px;
}

.auth-btn{
height:54px;
}

}