@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css"); /* 1. GLOBAL RESET & SCROLL PREVENTER */
@import url("https://cdn.jsdelivr.net"); :root { --secondary-glow: #6e48aa; --emerald-accent: #458342; --glass-bg: rgba(10, 12, 15, 0.75); --glass-border: rgba(255, 255, 255, 0.08); --input-bg: rgba(255, 255, 255, 0.03); }
*, *::before, *::after { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; width: 100%; height: 100%; overflow: hidden; /* Prevents all scrolling */
    background-color: #050608; }
body { display: flex; align-items: center; justify-content: center; font-family: 'Inter', -apple-system, sans-serif; position: relative; }
/* 2. BACKGROUND & ORB SYSTEM */
.background-container { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 1; overflow: hidden; /* Clips the large orbs so they don't cause scroll */
    pointer-events: none; }
.mesh-bg { position: absolute; width: 100%; height: 100%; background:
        radial-gradient(circle at 10% 10%, rgba(0, 210, 255, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(76, 175, 80, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(110, 72, 170, 0.05) 0%, transparent 50%); animation: meshMovement 25s ease-in-out infinite alternate; }
.orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.35; animation: floatOrb 30s infinite linear; }
.orb-1 { width: 700px; height: 700px; background: var(--secondary-glow); top: -15%; left: -10%; }
.orb-2 { width: 500px; height: 500px; background: var(--emerald-accent); bottom: -10%; right: -5%; animation-duration: 40s; animation-direction: reverse; }
@keyframes meshMovement {
 0% { transform: scale(1); }
100% { transform: scale(1.1) rotate(1deg); }
 }
@keyframes floatOrb {
 0% { transform: translate(0, 0); }
50% { transform: translate(60px, 30px); }
100% { transform: translate(0, 0); }
 }
/* 3. GLASS CARD */
.glass-card { position: relative; z-index: 10; background: var(--glass-bg); backdrop-filter: blur(40px) saturate(180%); -webkit-backdrop-filter: blur(40px) saturate(180%); border: 1px solid var(--glass-border); border-radius: 40px; width: 90%; max-width: 450px; padding: 3rem 2.5rem; box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.05); text-align: center; }
.brand-wrapper { margin-bottom: 2rem; }
.brand-logo { width: 50px; filter: drop-shadow(0 0 15px rgba(76, 175, 80, 0.4)); transition: transform 0.5s ease; cursor: pointer; }
.brand-logo:hover { transform: rotate(5deg) scale(1.1); }
.erp { font-size:0.8rem; }
/* 4. INPUT GROUPS */
.custom-input-group { background: var(--input-bg); border: 1px solid var(--glass-border); border-radius: 18px; padding: 0 18px; display: flex; align-items: center; gap: 12px; transition: all 0.3s ease; margin-bottom: 1.25rem; height: 60px; position: relative; }
.custom-input-group:focus-within { border-color: var(--emerald-accent); background: rgba(255, 255, 255, 0.06); box-shadow: 0 0 20px rgba(69, 131, 66, 0.15); }
.custom-input-group i { font-size: 1.1rem; color: rgba(255, 255, 255, 0.25); }
.custom-input-group:focus-within i { color: var(--emerald-accent); }
.custom-input-group input { background: transparent !important; border: none !important; color: #fff !important; width: 100%; font-size: 0.95rem; outline: none; height: 100%; font-weight: 600; }
/* 5. AUTOFILL HACK (TRANSPARENCY FIX) */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus { -webkit-text-fill-color: #ffffff !important; transition: background-color 5000000s ease-in-out 0s; /* Fixes white bg */
    caret-color: white; }
/* 6. BUTTONS & LINKS */
.btn-pro { background: #58c758; color: #000; border: none; border-radius: 18px; padding: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; width: 100%; transition: all 0.3s ease; margin-top: 1rem; cursor: pointer; }
.btn-pro:hover { transform: translateY(-2px); background: #f0f0f0; box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1); }
.btn-pro:active { transform: scale(0.98); }
.form-check-label, .reset-link { font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); text-decoration: none; }
.badge-system { background: rgba(76, 175, 80, 0.1); color: var(--emerald-accent); padding: 5px 12px; border-radius: 100px; font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; display: inline-block; border: 1px solid rgba(76, 175, 80, 0.1); }
/* 7. RESPONSIVENESS */
@media (max-width: 1024px) {
 .glass-card { max-width: 380px; padding: 2.5rem 2rem; }
 }
@media (max-width: 768px) {
 .glass-card { width: 88%; padding: 2rem 1.5rem; border-radius: 30px; backdrop-filter: blur(20px); /* Better performance on mobile */ }
.custom-input-group { height: 55px; }
.orb-1 { width: 400px; height: 400px; }
/* Smaller orbs for mobile */ }
@media (max-height: 700px) {
 body { align-items: flex-start; padding-top: 5vh; overflow-y: auto; }
/* Allows scroll on very short screens */ }
