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

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(
        circle at 50% 45%,
        #350000 0%,
        #100000 30%,
        #030303 75%
    );
    background-color: #030303;
    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: #080808;
    border: 1px solid #760000;
    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;
}
