/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/
.verify-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
}

    .verify-card .main_question {
        margin-bottom: 10px;
    }

.verification-target {
    font-weight: 600;
}

.otp-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.otp-input {
    width: 46px;
    height: 56px;
    text-align: center;
    font-size: 24px;
    border-radius: 10px;
    box-shadow: 0 0 0 1px #e0e0e0;
}

    .otp-input:focus {
        outline: none;
        box-shadow: 0 0 0 2px #2663ff;
    }

