﻿
body {
    font-family: 'Saira', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#wrapper {
    text-align: center;
    color: #333;
}

#dialog {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
    animation: fadeIn 0.5s ease-in-out;
}

    #dialog h3 {
        margin: 0 0 20px;
        font-size: 1.5rem;
        color: #333;
    }

.val-input {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
}

    .val-input input {
        width: 50px;
        height: 60px;
        text-align: center;
        font-size: 24px;
        border: 2px solid #ddd;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

        .val-input input:focus {
            border-color: #e31837;
            box-shadow: 0 0 10px rgba(227, 24, 55, 0.3);
            outline: none;
        }

.ProfileEdit {
    width: 100%;
    padding: 12px;
    background-color: #e31837;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .ProfileEdit:hover {
        background-color: #c4142e;
    }

.resend-otp {
    color: #e31837;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

    .resend-otp:hover {
        color: #c4142e;
    }

.countdown {
    font-size: 18px;
    color: #666;
    margin: 10px 0;
}

.alert {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
