/* Google Poppins Font CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Variables */
:root {
    --primary-font-family: 'Poppins', sans-serif;
    --light-white: #f5f8fa;
    --gray: #5e6278;
    --gray-1: #e3e3e3;
}

/* Main CSS OTP Verification New Changing */
:where(.verfication-box, .verfication-box form, .verfication-box .input-field, .verfication-box header) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.verfication-box {
    background: #fff;
    border-radius: 20px;
    row-gap: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.verfication-box .header {
    height: 150px;
    width: 150px;
    background-size: cover;
    background-position: center;
}

.verfication-box h2 {
    font-size: 1.50rem;
    color: #000;
    font-weight: bold;
}

.verfication-box h4 {
    font-size: 1.25rem;
    color: #000;
    font-weight: bold;
    letter-spacing: 0.25rem;
}

.verfication-box p {
    max-width: 250px;
    text-align: center;
    font-size: 13px;
}

.verfication-box p a {
    color: #4faaf4;
    text-decoration: none;
}

.verfication-box p a:hover {
    text-decoration: underline;
}

.verfication-box form .input-field {
    flex-direction: row;
    column-gap: 10px;
}

.verfication-box form .input-field input {
    height: 50px;
    width: 43px;
    border-radius: 13px;
    outline: none;
    font-size: 1.125rem;
    text-align: center;
    border: 1px solid #ddd;
}

.verfication-box form .input-field input:focus {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.verfication-box form .input-field input::-webkit-inner-spin-button,
.verfication-box form .input-field input::-webkit-outer-spin-button {
    display: none;
}

.verfication-box form button {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #fff;
    font-size: 1rem;
    border: none;
    padding: 9px 0;
    cursor: pointer;
    border-radius: 15px;
    pointer-events: none;
    background: #4faaf4;
    opacity: 0.5;
    transition: all 0.2s ease;
}

.verfication-box form button.active {
    opacity: 1;
    pointer-events: auto;
}

.verfication-box form button:hover {
    background: #287ed4;
}

@media (max-width: 400px) {
    .verfication-box form .input-field {
        flex-direction: row;
        column-gap: 5px;
    }
}