THE UPLINK
We are looking for authenticity, revolutionary potential, and those who have been exiled by the mainstream. ...
/* --- 3NIGMA BRED: COMPLETE FORM TERMINAL OVERRIDE (V3 - FINAL COLORS) --- */ /* 1. THE FOUNDATION: CONTAINER & BACKGROUND */ .sqs-block-form, .sqs-block-form .form-wrapper, .sqs-block-form .field-list { background-color: transparent !important; font-family: 'Courier New', Courier, monospace !important; } /* 2. TEXT ELEMENTS: LABELS & TITLES */ .sqs-block-form .title, .sqs-block-form .label, .sqs-block-form legend, .sqs-block-form .caption { font-family: 'Courier New', Courier, monospace !important; color: #ffffff !important; text-transform: uppercase !important; letter-spacing: 2px !important; font-size: 0.85rem !important; font-weight: 700 !important; margin-bottom: 10px !important; } /* 3. THE INPUTS: THE HANDSHAKE */ .sqs-block-form input, .sqs-block-form textarea, .sqs-block-form select { background-color: #0a0a0a !important; border: 1px solid #222 !important; /* Purple Input Accent */ border-left: 4px solid #9d00ff !important; color: #00ff41 !important; /* User typing color is GREEN */ border-radius: 0px !important; padding: 16px !important; font-family: 'Courier New', Courier, monospace !important; transition: all 0.3s ease !important; position: relative !important; z-index: 10 !important; } /* PLACEHOLDER LOGIC */ .sqs-block-form input::placeholder { color: #444 !important; opacity: 1 !important; } .sqs-block-form input:focus::placeholder { color: transparent !important; opacity: 0 !important; } /* Focus State: Green Activation */ .sqs-block-form input:focus, .sqs-block-form textarea:focus { border-color: #00ff41 !important; outline: none !important; box-shadow: 0 0 15px rgba(0, 255, 65, 0.15) !important; } /* 4. THE OPTIONS: CHECKBOXES */ .sqs-block-form .option label { color: #b0b0b0 !important; font-size: 0.8rem !important; text-transform: none !important; letter-spacing: 1px !important; } /* 5. THE BUTTON: TERMINAL COMMAND */ .sqs-block-form .button { background-color: transparent !important; border: 1px solid #00ff41 !important; color: #00ff41 !important; font-family: 'Courier New', Courier, monospace !important; text-transform: uppercase !important; letter-spacing: 5px !important; font-weight: 700 !important; padding: 22px 55px !important; border-radius: 0px !important; transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) !important; cursor: pointer !important; } .sqs-block-form .button:hover { background-color: #00ff41 !important; color: #000000 !important; box-shadow: 0 0 30px rgba(0, 255, 65, 0.4) !important; transform: translateY(-2px); } /* 6. SYSTEM ALERTS: RECALIBRATED TO PURPLE */ /* The required asterisk is now purple */ .sqs-block-form .required { color: #9d00ff !important; } /* Error state is now a purple terminal alert */ .sqs-block-form .field-error { background-color: rgba(157, 0, 255, 0.1) !important; /* Purple tint */ border: 1px solid #9d00ff !important; /* Solid purple border */ box-shadow: 0 0 10px rgba(157, 0, 255, 0.2) !important; /* Purple glow */ color: #ffffff !important; } /* Fix for Browser Auto-fill */ .sqs-block-form input:-webkit-autofill { -webkit-text-fill-color: #00ff41 !important; -webkit-box-shadow: 0 0 0px 1000px #0a0a0a inset !important; }