:root {
    --neon-blue: #00d2ff;
    --neon-purple: #9d4edd;
    --neon-glow: 0 0 15px rgba(0, 210, 255, 0.4), 0 0 30px rgba(0, 210, 255, 0.2);
    --border-glow: 0 0 20px rgba(0, 210, 255, 0.25);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: radial-gradient(circle at 10% 20%, rgba(13, 11, 35, 1) 0%, rgba(5, 5, 15, 1) 90%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Glow Background Blobs */
.ambient-glow-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    top: 10%;
    right: -10%;
    z-index: 1;
    pointer-events: none;
    filter: blur(40px);
}

.ambient-glow-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    bottom: -10%;
    left: -15%;
    z-index: 1;
    pointer-events: none;
    filter: blur(50px);
}

/* Main Container: 100% Matching the Glow Outline Frame */
.mockup-frame {
    background: rgba(10, 11, 30, 0.65);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(0, 210, 255, 0.45);
    border-radius: 24px;
    box-shadow: 
        0 0 40px rgba(0, 210, 255, 0.15),
        inset 0 0 20px rgba(0, 210, 255, 0.1);
    width: 100%;
    max-width: 1200px;
    z-index: 2;
    position: relative;
    overflow: hidden;
    padding: 2.5rem;
}

/* Inner Content Card (Glass panel) */
.inner-content-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(0, 210, 255, 0.35);
    border-left: 1px solid rgba(0, 210, 255, 0.15);
    box-shadow: 
        inset 0 10px 30px rgba(255, 255, 255, 0.02),
        0 15px 35px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
}

/* Logo with Glow */
.brand-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 0 30px rgba(0, 210, 255, 0.5);
    letter-spacing: -0.5px;
}

/* Nav Items */
.nav-link-custom {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 1rem;
    font-size: 1.05rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav-link-custom:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.8);
}

.nav-link-custom.active {
    color: #ffffff;
    font-weight: 600;
}

.nav-link-custom.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
    border-radius: 10px;
}

/* Form Controls (Inputs) */
.glass-input-wrapper {
    position: relative;
    width: 100%;
}

.glass-input {
    background: rgba(14, 20, 46, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 30px !important;
    padding: 0.75rem 1.25rem 0.75rem 2.8rem !important;
    color: #ffffff !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease-in-out !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

.glass-input:focus {
    outline: none !important;
    border-color: rgba(0, 210, 255, 0.8) !important;
    box-shadow: 
        inset 0 2px 4px rgba(0,0,0,0.5),
        0 0 12px rgba(0, 210, 255, 0.35) !important;
    background: rgba(14, 20, 46, 0.85) !important;
}

/* Input Icon Placement */
.input-icon-left {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    width: 18px;
    height: 18px;
    transition: color 0.3s ease;
    pointer-events: none;
}

.glass-input:focus + .input-icon-left {
    color: var(--neon-blue);
}

.input-icon-right {
    position: absolute;
    right: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    width: 18px;
    height: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.input-icon-right:hover {
    color: #ffffff;
}

/* Neon Glow Button - 100% Match with Design Style */
.neon-btn {
    background: linear-gradient(135deg, #0099ff 0%, #00d2ff 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.8rem 2rem;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 4px 15px rgba(0, 153, 255, 0.4),
        0 0 25px rgba(0, 210, 255, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.neon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 153, 255, 0.6),
        0 0 35px rgba(0, 210, 255, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #00aaff 0%, #33e0ff 100%);
}

.neon-btn:active {
    transform: translateY(1px);
}

/* Custom Separator & Lines */
.divider-vertical {
    width: 1px;
    background: linear-gradient(to bottom, rgba(0, 210, 255, 0) 0%, rgba(0, 210, 255, 0.4) 30%, rgba(0, 210, 255, 0.4) 70%, rgba(0, 210, 255, 0) 100%);
    align-self: stretch;
}

/* Text Custom Styles */
.text-glow {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.text-glow-cyan {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

/* Hover Link Effect for Register */
.glow-link {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.glow-link:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.8);
}

/* Success & Status Box */
.custom-alert {
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: 12px;
    padding: 1rem;
    color: #e0f7fc;
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(10, 11, 30, 0.5);
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 210, 255, 0.3);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 210, 255, 0.6);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .divider-vertical {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, rgba(0, 210, 255, 0) 0%, rgba(0, 210, 255, 0.4) 50%, rgba(0, 210, 255, 0) 100%);
        margin: 2rem 0;
    }
    .mockup-frame {
        padding: 1.5rem;
    }
    .inner-content-card {
        padding: 1.5rem;
    }
}