:root {
    --primary: #6366f1;
    --bg-body: #f8fafc;
    --bg-card: #ffffff;
    --text: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --bg-input: #ffffff;
}

[data-theme="dark"] {
    --primary: #818cf8;
    --bg-body: #0f172a;
    --bg-card: #1e293b;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --bg-input: #334155;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-body);
    color: var(--text);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.soporte-container {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 500px;
    border: 1px solid var(--border-color);
    margin: 20px;
}

.soporte-header {
    text-align: center;
    margin-bottom: 32px;
}

.soporte-logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 8px;
    display: inline-block;
}

.soporte-title {
    font-size: 1.5rem;
    margin: 0 0 8px 0;
}

.soporte-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-input);
    color: var(--text);
    font-size: 0.95rem;
    transition: all 0.2s;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-submit:hover {
    opacity: 0.9;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.success-message {
    display: none;
    text-align: center;
    color: #10b981;
    margin-top: 16px;
    font-weight: 500;
}

.error-message {
    display: none;
    text-align: center;
    color: #ef4444;
    margin-top: 16px;
    font-weight: 500;
}