body{

margin:0;
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial;
background:#f3f5f7;

}

.wrapper{

height:100vh;
display:flex;
justify-content:center;
align-items:center;

}

.login-card{

background:white;
padding:40px;
width:360px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
text-align:center;

}

.logo{

width:60px;
margin-bottom:10px;

}

h2{

margin-bottom:25px;
font-weight:500;

}

input{

width:100%;
padding:12px;
margin-bottom:14px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;

}

input:focus{

outline:none;
border-color:#2a7df7;

}

button{

width:100%;
padding:12px;
background:#2a7df7;
border:none;
border-radius:6px;
color:white;
font-size:14px;
cursor:pointer;

}

button:hover{

background:#1f66d1;

}

.links{

margin-top:16px;
font-size:13px;

}

.links a{

display:block;
color:#2a7df7;
text-decoration:none;
margin-top:6px;

}

#errorBox{

margin-top:10px;
color:#c00;
font-size:13px;

}
