*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#0f172a,#1e293b,#2563eb);
    padding:20px;
}

.forgot-container{
    width:100%;
    max-width:450px;
}

.forgot-card{
    background:#ffffff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.25);
}

.logo{
    text-align:center;
    font-size:30px;
    font-weight:700;
    color:#2563eb;
    margin-bottom:10px;
}

.forgot-card h2{
    text-align:center;
    color:#1e293b;
    margin-bottom:10px;
}

.subtitle{
    text-align:center;
    color:#64748b;
    font-size:14px;
    margin-bottom:25px;
}

.message{
    background:#eff6ff;
    color:#1d4ed8;
    padding:12px;
    border-radius:8px;
    margin-bottom:15px;
    text-align:center;
    font-size:14px;
}

.forgot-card form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.forgot-card input{
    width:100%;
    padding:14px;
    border:1px solid #cbd5e1;
    border-radius:10px;
    font-size:15px;
    outline:none;
    transition:0.3s;
}

.forgot-card input:focus{
    border-color:#2563eb;
    box-shadow:0 0 8px rgba(37,99,235,0.2);
}

.forgot-card button{
    background:#2563eb;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.forgot-card button:hover{
    background:#1d4ed8;
}

.links{
    text-align:center;
    margin-top:20px;
}

.links a{
    text-decoration:none;
    color:#2563eb;
    font-weight:600;
}

.links a:hover{
    text-decoration:underline;
}

@media(max-width:500px){

    .forgot-card{
        padding:25px;
    }

    .logo{
        font-size:24px;
    }

}
