body {
    /*   background: #0f172a; */
    font-family: "Segoe UI", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.card {
    background: #dfe0e3;
    padding: 35px;
    /* border-radius: 14px;*/
    width: 100%;
    max-width: 380px;
    color: #000;
    /*   box-shadow: 0 20px 40px rgba(0, 0, 0, .4);*/
}

.card h2 {
    text-align: center;
    color: #000;

}

.card p {
    text-align: center;
    font-size: 13px;
    color: #000;
}

.timer {
    text-align: center;
    margin-top: 8px;
    font-size: 14px;
    color: #970909;
}

.notification {
    padding: 12px;
    border-radius: 8px;
    margin: 15px 0;
    text-align: center;
}

.success {
    background: rgba(0, 200, 83, .15);
    color: #00c853;
}

.error {
    background: rgba(255, 82, 82, .15);
    color: #ff5252;
}

.otp-inputs {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
}

.otp-inputs input {
    width: 52px;
    height: 56px;
    border-radius: 10px;
    border: 1px solid #374151;
    background: #fff;
    color: #000;
    font-size: 22px;
    text-align: center;
}

button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #6366f1;
    color: #fff;
    cursor: pointer;
}

button.secondary {
    background: #374151;
    margin-top: 10px;
}



.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #007bff;
    /* Bootstrap primary blue */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.back-link i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.back-link:hover {
    color: #0056b3;
    background-color: #e9f2ff;
}

.back-link:hover i {
    transform: translateX(-4px);
}