:root {
    --bs-red: #ea1917;
    --bs-dark: #0f172a;
}

body {
    background-color: var(--bs-dark);
    background-image: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.95)), 
                      url('../img/bloodstrike_actual.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    color: #fff;
    margin: 0;
}

.login-card {
    width: 100%;
    max-width: 400px;
    background: rgba(15, 17, 26, 0.95);
    backdrop-filter: blur(15px);
    padding: 45px;
    border-bottom: 5px solid var(--bs-red);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(0% 0%, 95% 0%, 100% 5%, 100% 100%, 5% 100%, 0% 95%);
}

.brush-text {
    font-family: 'Permanent Marker', cursive;
    color: var(--bs-red);
    text-align: center;
    font-size: 3rem;
    margin-bottom: 0;
    line-height: 1.2;
}

.orbitron-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #334155;
    color: white;
    border-radius: 0;
    padding: 14px;
    font-size: 1rem;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--bs-red);
    box-shadow: 0 0 15px rgba(234, 25, 23, 0.4);
    color: white;
}

.btn-portal {
    background: var(--bs-red);
    color: white;
    font-family: 'Orbitron', sans-serif;
    border: 2px solid #fff;
    width: 100%;
    padding: 15px;
    font-weight: 700;
    transition: 0.3s;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    margin-top: 30px;
}

.btn-portal:hover {
    background: #fff;
    color: var(--bs-red);
    transform: scale(1.02);
}

.auth-hint {
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 25px;
}

.hover-red {
    transition: color 0.3s ease;
}

.hover-red:hover {
    color: var(--bs-red) !important;
}
