/* * Global Stylesheet
 * Theme: Dark & Pink (Elegant Future)
 * Font: Inter (Google Fonts)
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --color-primary: #ec4899;       /* Pink-500 - Main Accent */
    --color-primary-hover: #db2777; /* Pink-600 */
    --color-bg: #0f172a;            /* Slate-900 - Deep Background */
    --color-card: #1e293b;          /* Slate-800 - Card Background */
    --color-text-main: #f8fafc;     /* Slate-50 */
    --color-text-muted: #94a3b8;    /* Slate-400 */
    --color-border: #334155;        /* Slate-700 */
    --color-error: #ef4444;         /* Red-500 */
    --color-success: #22c55e;       /* Green-500 */

    /* Typography */
    --font-main: 'Inter', sans-serif;
}

/* Base Reset */
body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Form Elements Customization */
.form-input {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.2);
}

/* Button Styles */
.btn-primary {
    background-color: var(--color-primary);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(236, 72, 153, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Text Highlights */
.text-gradient {
    background: linear-gradient(to right, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}