/* ================================
   VOUCHIFY FRONTEND STYLES
   ================================ */

.vouchify-wrapper {
    max-width: 420px;
    margin: 40px auto;
    padding: 28px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.vouchify-wrapper h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111827;
    text-align: center;
}

.vouchify-field {
    margin-bottom: 18px;
}

.vouchify-field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

.vouchify-field input[type="number"],
.vouchify-field input[type="text"] {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.vouchify-field input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.vouchify-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.vouchify-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.vouchify-button:active {
    transform: translateY(0);
    box-shadow: 0 5px 12px rgba(37, 99, 235, 0.25);
}

.vouchify-message {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
}

.vouchify-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #10b981;
}

.vouchify-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Mobile tweaks */
@media (max-width: 480px) {
    .vouchify-wrapper {
        margin: 20px 16px;
        padding: 22px;
    }
}
