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

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: transparent !important;
    background-color: transparent !important;
    font-family: Arial, sans-serif;
    color: white;
    position: relative;
}

/* Lightweight red background glow */
body::before,
body::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.10;
}

body::before {
    background: #ff0000;
    top: -180px;
    left: -120px;
}

body::after {
    background: #8b0000;
    bottom: -200px;
    right: -120px;
}

/* Login box */
.login-box {
    position: relative;
    z-index: 2;

    width: 390px;
    padding: 40px 35px;

    background: rgba(8, 8, 8, 0.03);
    backdrop-filter: blur(2px) saturate(130%);
    -webkit-backdrop-filter: blur(2px) saturate(130%);
    border: 1px solid rgba(118, 0, 0, 0.65);
    border-radius: 15px;

    box-shadow: 0 0 25px rgba(255, 0, 0, 0.12);

    text-align: center;
}

.login-box:hover {
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.16);
}

/* Title */
h1 {
    color: #ff1a1a;
    font-size: 32px;
    letter-spacing: 6px;
    margin-bottom: 8px;

    text-shadow: 0 0 5px rgba(255, 0, 0, 0.35);
}

.subtitle {
    color: #777;
    margin-bottom: 30px;
}

/* Inputs */
.input-group {
    position: relative;
    text-align: left;
    margin-bottom: 18px;
}

.input-group label {
    display: block;
    margin-bottom: 7px;
    color: #bbb;
    font-size: 14px;
}

input {
    width: 100%;
    height: 48px;

    padding: 0 14px;

    background: #0d0d0d;
    border: 1px solid #333;
    border-radius: 7px;

    color: white;
    outline: none;

    transition: border-color 0.15s ease,
                box-shadow 0.15s ease;
}

input:hover {
    border-color: #650000;
}

input:focus {
    border-color: #ff0000;

    box-shadow: 0 0 7px rgba(255, 0, 0, 0.18);
}

input::placeholder {
    color: #555;
}

/* Focus line */
.input-group::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;

    width: 0;
    height: 2px;

    background: #ff0000;

    transition: width 0.2s ease;
}

.input-group:focus-within::after {
    width: 100%;
}

.input-group:focus-within label {
    color: #ff2020;
}

/* CAPTCHA */
.captcha {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 10px;
    padding: 10px 12px;

    background: #160000;
    border: 1px solid #550000;
    border-radius: 7px;

    box-shadow: inset 0 0 6px rgba(255, 0, 0, 0.03);
}

#captchaText {
    color: #ff2020;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 5px;

    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

#refreshCaptcha {
    border: none;
    background: transparent;

    color: #ff2020;
    font-size: 23px;

    cursor: pointer;

    transition: color 0.15s ease;
}

#refreshCaptcha:hover {
    color: white;
}

#captchaInput {
    margin-bottom: 20px;
}

/* Login button */
.login-btn {
    width: 100%;
    height: 50px;

    border: 1px solid #ff2020;
    border-radius: 8px;

    background: #b00000;

    color: white;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;

    cursor: pointer;

    transition: transform 0.15s ease,
                box-shadow 0.15s ease,
                background 0.15s ease;
}

.login-btn:hover {
    background: #d00000;
    transform: translateY(-2px);

    box-shadow: 0 0 15px rgba(255, 0, 0, 0.25);
}

.login-btn:active {
    transform: translateY(0);
}

/* Telegram */
.telegram {
    display: inline-block;

    margin-top: 25px;

    color: #ff3030;
    text-decoration: none;
    font-size: 14px;

    transition: color 0.15s ease;
}

.telegram:hover {
    color: white;
}

/* Mobile */
@media (max-width: 480px) {
    body {
        overflow-y: auto;
    }

    .login-box {
        width: calc(100% - 24px);
        padding: 35px 25px;
    }

    .login-btn {
        height: 50px;
    }
}

/* =========================
   DASHBOARD
========================= */

.dashboard {
    display: flex;
    width: 100%;
    height: 100vh;
    position: relative;
}

.cyber-content {
    position: relative;
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 80px 6% 100px;
    clear: both;
}

.cyber-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}


/* ===== VERIFY PAGE GLOW ===== */

.login-box {
    box-shadow:
        0 0 10px rgba(255, 0, 0, 0.45),
        0 0 30px rgba(255, 0, 0, 0.25),
        0 0 70px rgba(255, 0, 0, 0.12);
}

.login-btn {
    box-shadow:
        0 0 8px rgba(255, 0, 0, 0.8),
        0 0 20px rgba(255, 0, 0, 0.45) !important;
}

.login-btn:hover {
    box-shadow:
        0 0 12px rgba(255, 0, 0, 1),
        0 0 30px rgba(255, 0, 0, 0.75),
        0 0 50px rgba(255, 0, 0, 0.4) !important;
}

/* BACK TO LOGIN - BLUE */

a.login-btn {
    background: linear-gradient(90deg, #0066ff, #00aaff) !important;
    border-color: #008cff !important;
    box-shadow:
        0 0 8px rgba(0, 140, 255, 0.9),
        0 0 20px rgba(0, 140, 255, 0.6),
        0 0 40px rgba(0, 140, 255, 0.35) !important;
}

a.login-btn:hover {
    background: linear-gradient(90deg, #008cff, #00c8ff) !important;
    box-shadow:
        0 0 12px rgba(0, 170, 255, 1),
        0 0 30px rgba(0, 170, 255, 0.8),
        0 0 55px rgba(0, 170, 255, 0.5) !important;
}

/* BACK TO LOGIN - BLUE ONLY */
a.login-btn {
    background: linear-gradient(90deg, #0066ff, #00aaff) !important;
    border-color: #008cff !important;
    box-shadow:
        0 0 8px rgba(0, 140, 255, 0.9),
        0 0 20px rgba(0, 140, 255, 0.6) !important;
}

a.login-btn:hover {
    background: linear-gradient(90deg, #008cff, #00c8ff) !important;
    box-shadow:
        0 0 12px rgba(0, 170, 255, 1),
        0 0 30px rgba(0, 170, 255, 0.8) !important;
}

/* BACK TO LOGIN - SAME BUTTON SHAPE, BLUE */
a.login-btn {
    display: block !important;
    width: 100% !important;
    padding: 12px 20px !important;
    margin: 0 !important;
    border-radius: 8px !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    background: linear-gradient(90deg, #0066ff, #00aaff) !important;
    border: 1px solid #008cff !important;
    color: #fff !important;
    box-shadow:
        0 0 8px rgba(0, 140, 255, 0.9),
        0 0 20px rgba(0, 140, 255, 0.6) !important;
}

a.login-btn:hover {
    background: linear-gradient(90deg, #008cff, #00c8ff) !important;
    box-shadow:
        0 0 12px rgba(0, 170, 255, 1),
        0 0 30px rgba(0, 170, 255, 0.8) !important;
}

/* BACK TO LOGIN - MATCH OTHER BUTTONS */
a.login-btn {
    display: block !important;
    width: 100% !important;
    min-height: 48px !important;
    padding: 14px 20px !important;
    margin: 12px 0 0 0 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 20px !important;
    text-align: center !important;
    text-decoration: none !important;
    color: #fff !important;
    background: linear-gradient(90deg, #0066ff, #00aaff) !important;
    border: 1px solid #008cff !important;
    box-shadow:
        0 0 8px rgba(0, 140, 255, 0.9),
        0 0 20px rgba(0, 140, 255, 0.6) !important;
}
