@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap');

:root {
    --bg: #050505;
    --glass: rgba(15, 15, 15, 0.7);
    --accent: #0070f3;
    --border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-dim: #a1a1a1;
}

body {
    background: radial-gradient(circle at top right, #111, #050505);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 120px 20px; /* Space for fixed header/footer */
    box-sizing: border-box;
}

/* --- FIXED BRANDING --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    box-sizing: border-box;
}

.logo { font-weight: 800; font-size: 1.4rem; letter-spacing: 2px; }
.logo span { color: var(--accent); }

.nav-status {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
}

.pulse {
    width: 8px; height: 8px; background: #00ff00; border-radius: 50%;
    margin-right: 10px; box-shadow: 0 0 10px #00ff00;
}

/* --- FORM AREA STRUCTURE --- */
.container {
    background: var(--glass);
    backdrop-filter: blur(20px);
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    width: 100%;
    max-width: 550px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    box-sizing: border-box;
}

.portal-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 112, 243, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 100px;
    font-size: 0.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

h1 { font-weight: 800; font-size: 2rem; margin: 0 0 10px 0; letter-spacing: -1px; }
p { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 2.5rem; line-height: 1.6; }

.form-group { margin-bottom: 1.8rem; width: 100%; text-align: left; }
label { 
    font-size: 0.7rem; font-weight: 700; color: var(--accent); 
    text-transform: uppercase; letter-spacing: 1.2px; display: block; margin-bottom: 10px; 
}

input, select, textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    box-sizing: border-box;
    transition: 0.3s;
}

input:focus, select:focus, textarea:focus {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 20px rgba(0, 112, 243, 0.1);
}

button {
    width: 100%; padding: 16px; background: var(--accent); color: white;
    border: none; border-radius: 12px; font-weight: 800; cursor: pointer;
    text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;
}

button:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(0, 112, 243, 0.3); }

/* --- FOOTER --- */
.site-footer {
    position: fixed;
    bottom: 0; width: 100%; padding: 20px; text-align: center;
    font-size: 0.7rem; color: var(--text-dim); border-top: 1px solid var(--border);
    background: rgba(5, 5, 5, 0.8); backdrop-filter: blur(10px);
}