body {
    background: #ffffff;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.password-reset-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.password-reset-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    padding: 2.5rem 2rem;
    max-width: 370px;
    width: 100%;
    text-align: center;
}

.password-reset-logo img {
    width: 80px;
    margin-bottom: 1rem;
}

.password-reset-card h2 {
    color: #0a2342;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.password-reset-card p {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.password-reset-card label {
    display: block;
    text-align: left;
    margin-bottom: 0.5rem;
    color: #0a2342;
    font-weight: 500;
}

.password-reset-card input[type="email"] {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #bfc9d4;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    box-sizing: border-box;
}

.password-reset-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-cancel {
    background: #e74c3c;
    color: #fff;
}

.btn-cancel:hover {
    background: #c0392b;
}

.btn-verify {
    background: #2ecc71;
    color: #fff;
}

.btn-verify:hover {
    background: #27ae60;
}

.error-message {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px auto;
    display: block;
    color: #b8292f;
    font-size: 14px;
    padding: 12px;
    background-color: #ffebee;
    border-radius: 4px;
    border-left: 4px solid #b8292f;
    text-align: center;
}

.success-message {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px auto;
    display: block;
    color: #4aa866;
    font-size: 14px;
    padding: 12px;
    background-color: #e8f5e8;
    border-radius: 4px;
    border-left: 4px solid #53b771;
    text-align: center;
}