/* CF7 OTP Verification Styles */

.wsm-otp-verification-container {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.wsm-otp-verification-wrapper h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #2271b1;
    font-size: 18px;
}

.wsm-otp-instruction {
    margin-bottom: 15px;
    color: #646970;
    font-size: 14px;
}

.wsm-otp-input-group {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 10px;
}

.wsm-otp-input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #1d2327;
}

.wsm-otp-input {
    flex: 1;
    max-width: 200px;
    padding: 10px 15px;
    font-size: 18px;
    text-align: center;
    letter-spacing: 5px;
    border: 2px solid #8c8f94;
    border-radius: 4px;
    font-weight: 600;
}

.wsm-otp-input:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 1px #2271b1;
}

.wsm-verify-otp-btn {
    padding: 10px 20px;
    height: auto;
}

.wsm-otp-message {
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
}

.wsm-otp-resend {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.wsm-resend-timer {
    color: #646970;
    font-size: 13px;
}

.wsm-resend-otp-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success state */
.wsm-otp-verification-wrapper.success {
    background: #f0f6fc;
    border-color: #00a32a;
}

/* Error state */
.wsm-otp-verification-wrapper.error {
    background: #fcf0f1;
    border-color: #d63638;
}

/* Responsive */
@media (max-width: 600px) {
    .wsm-otp-input-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .wsm-otp-input {
        max-width: 100%;
        margin-bottom: 10px;
    }
    
    .wsm-verify-otp-btn {
        width: 100%;
    }
}

