body{
background:#f2f2f7;
font-family:system-ui,-apple-system,Segoe UI,Roboto;
margin:0;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
height:100vh;
}

.login-container{
display:flex;
flex-direction:column;
align-items:center;
}

.logo{
width:100px;
height:100px;
border-radius:12px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
margin-bottom:30px;
}

.form-group{
display:flex;
flex-direction:column;
align-items:center;
margin-bottom:20px;
}

label{
font-size:12px;
font-weight:600;
color:rgba(0,100,255,0.8);
margin-bottom:6px;
}

input{
width:250px;
padding:10px;
border-radius:12px;
border:1px solid rgba(0,100,255,0.6);
text-align:center;
font-size:14px;
outline:none;
box-shadow:0 2px 4px rgba(0,0,0,0.05);
}

button{
width:250px;
padding:12px;
border:none;
border-radius:12px;
background:rgba(0,100,255,0.8);
color:white;
font-weight:600;
cursor:pointer;
box-shadow:0 3px 6px rgba(0,100,255,0.3);
margin-top:10px;
}

button:hover{
opacity:0.9;
}

#loginStatus{
margin-top:15px;
font-size:14px;
color:#444;
}

.bottom-links{
position:absolute;
bottom:20px;
display:flex;
gap:20px;
}

.bottom-links a{
color:rgba(0,100,255,0.8);
text-decoration:none;
font-size:14px;
}

.bottom-links .gray{
color:gray;
}