:root {
    --primary: #0081c9;
    --secondary: #5bc0f8;
    --accent: #86e5ffd4;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --light: #f8f9fa;
    --dark: #212529;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.7);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    --borderRadius: 15px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Outfit', sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    color: var(--dark);
    line-height: 1.6;
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--borderRadius);
    box-shadow: var(--shadow);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.15);
}

/* Premium Buttons */
.btn-premium {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 129, 201, 0.3);
}

.btn-premium:hover {
    box-shadow: 0 6px 20px rgba(0, 129, 201, 0.5);
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    transform: scale(1.02);
}

/* Multi-step Form Stylings */
.step-container {
    display: none;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-container.active {
    display: block;
    animation: slideInPremium 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInPremium {
    from {
        opacity: 0;
        transform: translateX(50px) rotateY(-10deg);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
        filter: blur(0);
    }
}

/* Volatile/Dynamic Utilities */
.text-glow {
    text-shadow: 0 0 10px rgba(0, 129, 201, 0.3);
    transition: text-shadow 0.3s ease, letter-spacing 0.3s ease;
}

.text-glow:hover {
    text-shadow: 0 0 20px rgba(0, 129, 201, 0.6);
    letter-spacing: 1px;
    /* Volatile effect */
}

/* Form Inputs with Glow */
.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 10px;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 15px rgba(91, 192, 248, 0.4);
    transform: translateY(-2px);
}

/* Responsiveness */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .glass-card {
        padding: 1.5rem;
    }
}