*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

body{
    min-height:100vh;
    background:linear-gradient(135deg,#f4fbff,#dff7f8);
    display:flex;
    align-items:center;
    justify-content:center;
}

.recover-container{
    width:100%;
    display:flex;
    justify-content:center;
    padding:30px;
}

.recover-card{
    width:430px;
    background:white;
    border-radius:24px;
    padding:38px;
    box-shadow:0 15px 35px rgba(13,59,102,.15);
    text-align:center;
}

.logo{
    width:90px;
    margin-bottom:15px;
}

.recover-card h1{
    color:#0d3b66;
    margin-bottom:10px;
    font-size:30px;
}

.recover-card p{
    color:#666;
    margin-bottom:25px;
}

.form-group{
    text-align:left;
    margin-bottom:18px;
}

.form-group label{
    display:block;
    color:#0d3b66;
    font-weight:700;
    margin-bottom:8px;
}

.form-group input{
    width:100%;
    padding:14px;
    border:2px solid #ddd;
    border-radius:12px;
    font-size:15px;
}

.form-group input:focus{
    outline:none;
    border-color:#0cb7bb;
}

button{
    width:100%;
    border:none;
    background:#0cb7bb;
    color:white;
    padding:15px;
    border-radius:12px;
    font-weight:900;
    font-size:16px;
    cursor:pointer;
    margin-top:10px;
}

button:hover{
    background:#089ca0;
}

.back-link{
    display:block;
    margin-top:22px;
    color:#0d3b66;
    text-decoration:none;
    font-weight:800;
}

.success{
    background:#dff7f8;
    color:#087f83;
    padding:13px;
    border-radius:12px;
    margin-bottom:18px;
    font-weight:700;
}

.error{
    background:#ffe5e5;
    color:#c0392b;
    padding:13px;
    border-radius:12px;
    margin-bottom:18px;
    font-weight:700;
}