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

.reset-container{
display:flex;
flex-direction:column;
align-items:center;
gap:20px;
width:300px;
}

h2{
color:#333;
}

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

button{
width:100%;
padding:12px;
border:none;
border-radius:12px;
background:rgba(0,100,255,0.8);
color:white;
font-weight:600;
cursor:pointer;
}

button:hover{
opacity:0.9;
}

/* modal */

.modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.3);
justify-content:center;
align-items:center;
}

.modal-content{
background:white;
padding:20px;
border-radius:10px;
text-align:center;
width:250px;
}

.modal-content button{
margin-top:10px;
width:100px;
}