From 1a7a33041c193f8d16cec538ca2cad8ad64196c5 Mon Sep 17 00:00:00 2001 From: Jon Ander Oribe Date: Sun, 11 Jan 2026 14:17:13 +0100 Subject: [PATCH] Styles improvement --- static/css/login.css | 36 ++++++++++++++++++++++++++++++++++++ templates/login.html | 37 +------------------------------------ 2 files changed, 37 insertions(+), 36 deletions(-) create mode 100644 static/css/login.css diff --git a/static/css/login.css b/static/css/login.css new file mode 100644 index 0000000..437e803 --- /dev/null +++ b/static/css/login.css @@ -0,0 +1,36 @@ +.login-box { + background: rgba(10, 10, 26, 0.9); + border: 1px solid var(--accent-cyan); + padding: 30px; + border-radius: 4px; + box-shadow: 0 0 20px rgba(0, 212, 255, 0.2); + width: 100%; + max-width: 400px; + margin-top: 20px; +} + +.form-input { + width: 100%; + background: #050510; + border: 1px solid #1a1a40; + color: var(--accent-cyan); + padding: 12px; + margin: 10px 0; + font-family: 'JetBrains Mono', monospace; + outline: none; +} + +.form-input:focus { + border-color: var(--accent-green); + box-shadow: 0 0 10px rgba(0, 255, 136, 0.2); +} + +.flash-error { + color: var(--accent-red); + font-size: 11px; + margin-bottom: 15px; + text-transform: uppercase; + border: 1px solid var(--accent-red); + padding: 8px; + background: rgba(255, 0, 0, 0.1); +} \ No newline at end of file diff --git a/templates/login.html b/templates/login.html index 282e3d1..e351300 100644 --- a/templates/login.html +++ b/templates/login.html @@ -5,42 +5,7 @@ iNTERCEPT // Restricted Access - +