/**
 * ====================================================================
 * Pavo Admin Dashboard - Form Elements Styles
 * Copyright © 2024 RefineThemes.com
 * Author: Saleem Raza
 * Founder: RefineThemes.com
 * License: MIT
 * ====================================================================
 */

:root {
            --primary-gradient: linear-gradient(135deg, #6e8efb, #a777e3);
            --secondary-gradient: linear-gradient(135deg, #ff7e5f, #feb47b);
            --dark-bg: #0f172a;
            --neon-blue: #00f2fe;
            --neon-pink: #fe00ea;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            background: var(--dark-bg);
            color: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 2rem;
        }
        
        .neo-form {
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 3rem;
            max-width: 700px;
            margin: 0 auto;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .neo-form::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(110,142,251,0.1) 0%, rgba(0,0,0,0) 70%);
            z-index: -1;
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .form-title {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            text-align: center;
            margin-bottom: 2rem;
            background: linear-gradient(to right, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
        }
        
        .form-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 3px;
            background: var(--primary-gradient);
            margin: 10px auto;
            border-radius: 3px;
        }
        
        .neo-input-group {
            position: relative;
            margin-bottom: 2rem;
        }
        
        .neo-input {
            width: 100%;
            padding: 1rem 1rem 1rem 3rem;
            font-size: 1rem;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .neo-input:focus {
            outline: none;
            border-color: var(--neon-blue);
            box-shadow: 0 0 0 2px rgba(0, 242, 254, 0.3);
            background: rgba(0, 0, 0, 0.5);
        }
        
        .input-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--neon-blue);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .neo-input:focus + .input-icon {
            color: var(--neon-pink);
            transform: translateY(-50%) scale(1.2);
        }
        
        .neo-label {
            position: absolute;
            left: 3rem;
            top: 1rem;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
            pointer-events: none;
            font-size: 0.9rem;
        }
        
        .neo-input:focus ~ .neo-label,
        .neo-input:not(:placeholder-shown) ~ .neo-label {
            top: -0.8rem;
            left: 1rem;
            font-size: 0.7rem;
            background: var(--dark-bg);
            padding: 0 0.5rem;
            color: var(--neon-blue);
        }
        
        .neo-btn {
            background: var(--primary-gradient);
            border: none;
            color: white;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Orbitron', sans-serif;
            position: relative;
            overflow: hidden;
            z-index: 1;
            width: 100%;
            margin-top: 1rem;
        }
        
        .neo-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--secondary-gradient);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .neo-btn:hover::before {
            opacity: 1;
        }
        
        .neo-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .neo-btn:active {
            transform: translateY(0);
        }
        
        .holographic-check {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            cursor: pointer;
        }
        
        .holographic-check input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }
        
        .checkmark {
            position: relative;
            height: 20px;
            width: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 5px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .holographic-check:hover .checkmark {
            border-color: var(--neon-blue);
            box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
        }
        
        .checkmark::after {
            content: '';
            position: absolute;
            display: none;
            left: 6px;
            top: 2px;
            width: 5px;
            height: 10px;
            border: solid var(--neon-pink);
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }
        
        .holographic-check input:checked ~ .checkmark {
            background: rgba(0, 242, 254, 0.1);
            border-color: var(--neon-pink);
        }
        
        .holographic-check input:checked ~ .checkmark::after {
            display: block;
            animation: checkAnim 0.3s ease;
        }
        
        @keyframes checkAnim {
            0% { transform: scale(0.5) rotate(45deg); opacity: 0; }
            100% { transform: scale(1) rotate(45deg); opacity: 1; }
        }
        
        .neo-select {
            position: relative;
            margin-bottom: 2rem;
        }
        
        .neo-select select {
            width: 100%;
            padding: 1rem;
            font-size: 1rem;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: white;
            appearance: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .neo-select select:focus {
            outline: none;
            border-color: var(--neon-blue);
            box-shadow: 0 0 0 2px rgba(0, 242, 254, 0.3);
        }
        
        .neo-select::after {
            content: '⌄';
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--neon-blue);
            pointer-events: none;
            font-size: 1.2rem;
        }
        
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(0, 242, 254, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 242, 254, 0); }
        }
        
        .floating-dots {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }
        
        .dot {
            position: absolute;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }
        
        @keyframes float {
            0% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
        }