/* Verification Page */
.vp-verify-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 0 20px;
}

.vp-verify-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
}

.vp-verify-box h2 {
    margin: 0 0 10px 0;
    color: #333;
    text-align: center;
}

.vp-description {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}

.vp-row {
    margin-bottom: 20px;
}

.vp-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.vp-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.vp-input:focus {
    outline: none;
    border-color: #2eacce;
    box-shadow: 0 0 0 2px rgba(46,172,206,0.2);
}

.vp-code-input {
    text-align: center;
    font-size: 24px;
    letter-spacing: 8px;
    font-weight: bold;
}

.vp-hint {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #999;
}

.vp-btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.vp-btn-primary {
    background: #2eacce;
    color: #fff;
}

.vp-btn-primary:hover {
    background: #1e8ca8;
}

.vp-btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.vp-btn-link {
    background: none;
    border: none;
    color: #2eacce;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
}

.vp-btn-link.disabled {
    color: #999;
    cursor: not-allowed;
    text-decoration: none;
}

.vp-resend-row {
    text-align: center;
    padding-top: 10px;
}

.vp-timer {
    margin-left: 10px;
    font-size: 14px;
    color: #666;
}

.vp-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
}

.vp-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.vp-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.vp-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Verified User Badge */
.vp-verified-badge {
    display: inline-block;
    background: #46b450;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    margin-left: 5px;
    cursor: help;
}

/* Responsive */
@media (max-width: 600px) {
    .vp-verify-box {
        padding: 20px;
    }
    
    .vp-code-input {
        font-size: 18px;
        letter-spacing: 4px;
    }
}