:root {
    --bg-dark: #121417;
    --bg-card: #1b1e23;
    --accent-cyan: #06b6d4;
    --accent-blue: #3b82f6;
    --border: #2d333b;
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: #e5e7eb;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.register-container {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

.brand-header {
    text-align: center;
    margin-bottom: 30px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.cyan-part { 
    color: var(--accent-cyan); 
}

.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.input-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    display: block;
    font-size: 0.78rem;
    color: #9ca3af;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.input-group input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-dark) !important;
    border: 1px solid var(--border) !important;
    border-radius: 6px !important;
    color: #ffffff !important;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-group input:focus {
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

.btn-primary {
    width: 100%;
    background: var(--accent-cyan);
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: filter 0.2s ease;
    margin-top: 5px;
}

.btn-primary:hover { 
    filter: brightness(0.9); 
}

.register-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 0.85rem;
    color: #9ca3af;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cyan-text {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
}

.cyan-text:hover {
    text-decoration: underline;
}

#turnstile-container {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    min-height: 65px;
}

/* TOAST NOTIFICATIONS (FIXED BOTTOM RIGHT) */
.toast-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: #1e2229;
    border: 1px solid #2d333b;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
    animation: toastIn 0.3s ease forwards;
}

.toast.success { border-left: 4px solid #10b981; }
.toast.error { border-left: 4px solid #ef4444; }
.toast.warning { border-left: 4px solid #fbbf24; }

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

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