﻿@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
    .otp-modal {
        padding: 32px 18px 22px;
    }

    .otp-title {
        font-size: 24px;
    }

    .otp-desc {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .otp-inputs {
        gap: 16px;
        margin-bottom: 30px;
    }

    .otp-box {
        width: 40px;
        height: 44px;
        font-size: 22px;
    }

    .otp-btn {
        height: 54px;
        font-size: 18px;
        border-radius: 18px;
    }

    .otp-close {
        font-size: 34px;
        top: 14px;
        right: 14px;
    }
}

.otp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.otp-modal {
    position: relative;
    width: 100%;
    max-width: 820px;
    background: #ffffff;
    border-radius: 10px;
    padding: 42px 36px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.otp-close {
    position: absolute;
    top: 18px;
    right: 20px;
    border: none;
    background: transparent;
    font-size: 42px;
    line-height: 1;
    color: #2d9fb1;
    cursor: pointer;
}

.otp-title {
    margin: 0 0 16px;
    font-size: 30px;
    font-weight: 600;
    color: #5d2b7d;
}

.otp-desc {
    margin: 0 auto 42px;
    max-width: 640px;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 34px;
    margin-bottom: 42px;
    flex-wrap: wrap;
}

.otp-box {
    width: 54px;
    height: 54px;
    border: none;
    border-bottom: 3px solid #d7d7d7;
    background: transparent;
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    color: #333;
    outline: none;
    border-radius: 0;
    padding: 0;
}

    .otp-box:focus {
        border-bottom-color: #1599d5;
    }

.otp-box-first {
    border-bottom-color: #1599d5;
}

.otp-resend {
    margin: 0 0 26px;
    font-size: 16px;
    color: #4f4f4f;
}

    .otp-resend a {
        color: #5aa6b6;
        text-decoration: underline;
        font-weight: 500;
    }

.otp-btn {
    width: 100%;
    height: 64px;
    border: none;
    border-radius: 22px;
    background: #0494d6;
    color: #ffffff;
    font-size: 22px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
}

    .otp-btn:hover {
        opacity: 0.94;
    }

    .otp-btn:active {
        opacity: 0.88;
    }
.captcha-box {
    border: 1px solid #d3d3d3;
    padding: 12px;
    width: 320px;
    border-radius: 4px;
    background: #f9f9f9;
}

.captcha-check {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
}

.captcha-popup {
    margin-top: 10px;
    background: white;
    padding: 10px;
    border: 1px solid #ccc;
}

.checkmark {
    color: green;
    font-weight: bold;
}
.custom-captcha-logo {
    cursor: pointer;
    user-select: none;
}
/*@keyframes spin {
    to {
        transform: rotate(360deg);
    }*/
}