/* public/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@400;500;600&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #060b14;
    font-family: 'Inter', sans-serif;
    color: #e2e8f0;
}

/* =========================================
   GLOBAL BACKGROUND EFFECTS
   ========================================= */
.bg_orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
}

.orb_1 {
    width: 420px;
    height: 420px;
    background: #00f0ff;
    top: -120px;
    left: -80px;
}

.orb_2 {
    width: 360px;
    height: 360px;
    background: #7c3aed;
    bottom: -100px;
    right: -60px;
}

.orb_3 {
    width: 200px;
    height: 200px;
    background: #0ea5e9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.grid_lines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image: linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* =========================================
   GLOBAL FORM ELEMENTS
   ========================================= */
.field_label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.6);
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.label_required {
    color: #ef4444;
    font-size: 14px;
    line-height: 1;
}

.input_wrap {
    position: relative;
}

.input_icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: rgba(0, 240, 255, 0.35);
    pointer-events: none;
    transition: color 0.2s;
}

.field_input {
    width: 100%;
    padding: 11px 14px 11px 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    outline: none;
    transition: all 0.3s ease;
}

.field_input::placeholder {
    color: rgba(148, 163, 184, 0.35);
}

.field_input:focus {
    background: rgba(0, 240, 255, 0.04);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.07);
}

.field_input:focus+.input_icon,
.input_wrap:focus-within .input_icon {
    color: rgba(0, 240, 255, 0.7);
}

/* Real-Time Pattern Validation */
.field_input:not(:placeholder-shown):invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.1);
}

.field_input:not(:placeholder-shown):invalid+.input_icon {
    color: #ef4444;
}

.field_input:not(:placeholder-shown):valid {
    border-color: #10b981;
    box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.1);
}

.field_input:not(:placeholder-shown):valid+.input_icon {
    color: #10b981;
}

/* =========================================
   GLOBAL BUTTONS & ALERTS
   ========================================= */
.submit_btn {
    width: 100%;
    padding: 14px;
    margin-top: 6px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.18), rgba(124, 58, 237, 0.18));
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 10px;
    color: #00f0ff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit_btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(124, 58, 237, 0.08));
    opacity: 0;
    transition: opacity 0.25s;
}

.submit_btn:hover::before {
    opacity: 1;
}

.submit_btn:hover {
    border-color: rgba(0, 240, 255, 0.55);
    box-shadow: 0 0 32px rgba(0, 240, 255, 0.15), 0 0 80px rgba(124, 58, 237, 0.08);
}

.alert_box {
    padding: 13px 16px;
    border-radius: 10px;
    margin-bottom: 22px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.alert_error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-left: 3px solid #ef4444;
    color: #fca5a5;
}

.alert_warning {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-left: 3px solid #f59e0b;
    color: #fcd34d;
}

.alert_success {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-left: 3px solid #10b981;
    color: #6ee7b7;
}
/* =========================================
   GLOBAL LINKS & STORE BUTTONS
   ========================================= */
.btn_solid {
    padding: 10px 22px; background: rgba(0, 240, 255, 0.15); border: 1px solid rgba(0, 240, 255, 0.4);
    color: #00f0ff; border-radius: 8px; text-decoration: none; font-weight: 500; font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; letter-spacing: 0.5px;
}
.btn_solid:hover { background: rgba(0, 240, 255, 0.25); box-shadow: 0 0 15px rgba(0, 240, 255, 0.2); }

.btn_outline {
    padding: 10px 22px; background: transparent; border: 1px solid rgba(148, 163, 184, 0.4);
    color: #e2e8f0; border-radius: 8px; text-decoration: none; font-weight: 500; font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; letter-spacing: 0.5px;
}
.btn_outline:hover { border-color: #00f0ff; color: #00f0ff; }

.btn_ghost {
    padding: 10px 22px; color: #a0aec0; text-decoration: none; font-weight: 500; 
    font-family: 'Space Grotesk', sans-serif; transition: all 0.3s ease; letter-spacing: 0.5px;
}
.btn_ghost:hover { color: #fff; }

.btn_large { padding: 16px 32px; font-size: 16px; }

.btn_icon_solid {
    background: rgba(0, 240, 255, 0.15); border: 1px solid rgba(0, 240, 255, 0.3); color: #00f0ff;
    width: 44px; height: 44px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s; font-size: 18px;
}
.btn_icon_solid:hover { background: rgba(0, 240, 255, 0.3); }