/* static/css/forgot_password.css */

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

.forgot-box{
width:450px;
max-width:95%;
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 0 20px rgba(0,0,0,.2);
}

.forgot-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
background:#2563eb;
color:#fff;
}

.close-btn{
cursor:pointer;
font-size:24px;
font-weight:bold;
}

.forgot-body{
padding:20px;
}

.forgot-body input,
.forgot-body select{
width:100%;
padding:10px;
border:1px solid #ddd;
border-radius:6px;
}

.form-row{
margin-bottom:15px;
}

.btn{
width:100%;
padding:10px;
border:none;
border-radius:6px;
cursor:pointer;
}

.btn-blue{
background:#2563eb;
color:#fff;
}

.btn-success{
background:#16a34a;
color:#fff;
}

.auth-links{
text-align:center;
margin-top:15px;
}

.auth-links a{
text-decoration:none;
color:#2563eb;
font-weight:600;
}
