* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f6f8fb;
    --white: #ffffff;
    --dark: #0f172a;
    --navy: #1e3a5f;
    --navy-soft: #e8f0f8;
    --gold: #c59b45;
    --text: #111827;
    --muted: #64748b;
    --border: #e5e7eb;
    --shadow: 0 18px 50px rgba(15,23,42,.08);
}

body{
    font-family: Inter, Arial, sans-serif;
    background: var(--bg);
}

.forgot-page{
    min-height:100vh;
    display:grid;
    grid-template-columns:45% 55%;
}

.forgot-left{
    background:linear-gradient(135deg,var(--navy),var(--dark));
    color:white;
    padding:70px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.brand{
    text-decoration:none;
}

.brand span{
    display:block;
    color:var(--gold);
    font-size:15px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.brand strong{
    display:block;
    color:white;
    font-size:38px;
    margin-top:6px;
    font-weight:900;
}

.left-content{
    max-width:480px;
}

.eyebrow{
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    color:#f6d98b;
    font-size:13px;
    font-weight:800;
    margin-bottom:18px;
}

.left-content h1{
    font-size:48px;
    line-height:1.1;
    margin-bottom:18px;
}

.left-content p{
    color:#dbeafe;
    line-height:1.8;
    font-size:17px;
}

.forgot-right{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
}

.forgot-card{
    width:100%;
    max-width:520px;
    background:white;
    border:1px solid var(--border);
    border-radius:30px;
    padding:40px;
    box-shadow:var(--shadow);
}

.card-header span{
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    background:var(--navy-soft);
    color:var(--navy);
    font-size:13px;
    font-weight:800;
    margin-bottom:16px;
}

.card-header h2{
    font-size:34px;
    color:var(--dark);
    margin-bottom:12px;
}

.card-header p{
    color:var(--muted);
    line-height:1.7;
    margin-bottom:30px;
}

.status-message{
    background:#dcfce7;
    color:#166534;
    padding:15px;
    border-radius:16px;
    margin-bottom:22px;
    font-weight:700;
}

.error-box{
    background:#fef2f2;
    color:#b91c1c;
    padding:16px;
    border-radius:16px;
    margin-bottom:22px;
}

.error-box p+ p{
    margin-top:6px;
}

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:800;
    color:var(--dark);
}

.form-group input{
    width:100%;
    height:56px;
    border:1px solid var(--border);
    border-radius:16px;
    padding:0 18px;
    font-size:15px;
    outline:none;
}

.form-group input:focus{
    border-color:var(--navy);
    box-shadow:0 0 0 4px rgba(30,58,95,.08);
}

.reset-btn{
    width:100%;
    height:56px;
    border:none;
    border-radius:16px;
    background:var(--navy);
    color:white;
    font-size:15px;
    font-weight:800;
    cursor:pointer;
    transition:.2s;
}

.reset-btn:hover{
    background:var(--dark);
}

.back-link{
    margin-top:24px;
    text-align:center;
}

.back-link a{
    color:var(--navy);
    text-decoration:none;
    font-weight:700;
}

.back-link a:hover{
    text-decoration:underline;
}

@media(max-width:900px){

    .forgot-page{
        grid-template-columns:1fr;
    }

    .forgot-left{
        padding:45px 30px;
    }

    .left-content h1{
        font-size:38px;
    }

    .forgot-right{
        padding:30px 20px;
    }

    .forgot-card{
        padding:30px;
    }

}
.verify-actions {
    display: grid;
    gap: 14px;
}

.secondary-btn {
    width: 100%;
    height: 56px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: white;
    color: var(--text);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.secondary-btn:hover {
    background: #f8fafc;
}