html, body {
    min-height: 100vh;
}

body {
    margin: 0;
    padding: 32px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.forgot-container {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px 32px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.forgot-container h2 {
    font-weight: 600;
    color: #1f2b5b;
}

.forgot-container p {
    color: #6c757d;
    font-size: 0.95rem;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.btn.btn-next,
.btn-next {
    width: 100%;
    background-color: #4b6cb7;
    border: 2px solid #3b57a3;
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn.btn-next:hover,
.btn-next:hover {
    background-color: #3b57a3;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(59, 87, 163, 0.35);
}

.verification-input {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}

.verify-digit {
    text-align: center;
    font-size: 1.25rem;
    padding: 10px 0;
    border-radius: 10px;
}

.back-link {
    margin-top: 12px;
    width: 100%;
    border: none;
    background: transparent;
    color: #4b6cb7;
    text-align: center;
    text-decoration: underline;
    font-weight: 600;
}

.back-link:hover {
    color: #3b57a3;
}

.text-danger.small {
    margin-top: 6px;
}

@media (max-width: 480px) {
    .forgot-container {
        padding: 32px 20px 24px;
    }

    .verification-input {
        gap: 6px;
    }

    .verify-digit {
        font-size: 1rem;
    }
}

