/* assets/css/style.css */
.cf7-otp-modal-overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99999;
}

.cf7-otp-modal {
    background: #fff;
    border-radius: 8px;
    padding: 22px;
    max-width: 520px;
    width: 92%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.cf7-otp-modal h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.cf7-otp-modal p {
    margin: 0 0 12px;
}

.cf7-otp-modal input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 12px;
}

.cf7-otp-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.cf7-otp-buttons button {
    padding: 10px 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#cf7otp_verify {
    background: #1976d2;
    color: #fff;
}

#cf7otp_resend {
    background: #e0e0e0;
    cursor: not-allowed;
}

#cf7otp_resend:not(:disabled) {
    background: #388e3c;
    color: #fff;
    cursor: pointer;
}

#cf7otp_msg {
    margin-top: 10px;
}