@media all {
    html, body {
        height: 100%;
    }

    /* Background - !important to override SeAT's seat.css */
    body.login-page {
        background-image: url("https://i.postimg.cc/PfMbY440/Galaxy-Gas.png") !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
        background-attachment: fixed !important;
        background-color: #000 !important;
    }

    /* Login box styling */
    .login-box {
        width: 380px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0 !important;
        border-radius: 25px;
        backdrop-filter: blur(12px);
        background: rgba(20, 20, 20, 0.85) !important;
        border: 1px solid rgba(255,255,255,0.15);
        box-shadow: 0 15px 35px rgba(0,0,0,0.6);
        text-align: center;
    }

    /* Hide the default SeAT SVG logo img tag */
    img.login-logo {
        display: none !important;
    }
   
   .text-center.mb-4 {
        margin-bottom: 0px !important;
    }

    .text-center.mb-4::before {
        content: "";
        display: block;
        width: 140px;
        height: 140px;
        margin: 10px auto -40px auto;
        background-image: url("https://i.postimg.cc/85ZRQkj5/Chat-GPT-Image-Feb-20-2026-11-04-15-AM.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

     .text-center.mb-4::after {
        content: "GALAXY GAS" "\A" "(ALLIANCE)" "\A" "SILENT CANOPY";
        white-space: pre;
        display: block;
        color: #ffffff;
        font-size: 22px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: none;
        margin: 10px auto -40px auto;
        line-height: 1.8;
        text-shadow: 0 0 10px rgba(255,255,255,0.3);
        opacity: 0.9;
    }

    /* Hide the SeAT text brand name */
    .navbar-brand.navbar-brand-autodark {
        display: none !important;
    }

    /* Divider */
    .login-box-body::before {
        content: "";
        display: block;
        height: 1px;
        width: 80%;
        margin: 5px auto 15px auto;
        background: rgba(255,255,255,0.2);
    }

    .login-box-body {
        background: transparent !important;
        color: #ffffff !important;
        padding: 20px;
    }

    /* Button */
    .btn-primary {
        background-color: #1e88e5 !important;
        border: none !important;
        border-radius: 10px;
        padding: 10px 15px;
        font-weight: 600;
        transition: 0.2s ease-in-out;
    }

    .btn-primary:hover {
        background-color: #1565c0 !important;
        transform: translateY(-1px);
    }
}

@media (max-width: 420px) {
    .login-box {
        width: 90%;
    }
}
