/* -----------------------------
   ROOT + RESET
------------------------------ */
:root {
    --bg: #252525;
    --card-bg: #000000;
    --text-light: #ffffff;
    --text-dark: #ffffff;
    --text-muted: #f0f0f0;
    --accent: #eb2525;

    --shadow-light: rgba(0, 245, 253, 0.9);
    --shadow-dark: rgba(48, 210, 216, 0.6);
}

body {
    min-height: 100vh;
    background: var(--bg);
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
}

/* -----------------------------
   CENTER LAYOUT
------------------------------ */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 460px;
    padding: 1.5rem;
}

/* -----------------------------
   LOGO
------------------------------ */
.brand-logo {
    width: 500px;
    height: 500px;
    margin: 0 auto 1rem;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;     /* ✅ important */
    box-shadow: none;             /* ✅ important */
}

.brand-logo img {
    width: 100%;
    height: 100%;
}


.brand-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
}

.brand-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* -----------------------------
   CARD (NEUMORPHIC)
------------------------------ */
.neu-card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 1.75rem;

    box-shadow:
        10px 10px 25px var(--shadow-dark),
        -10px -10px 25px var(--shadow-light);
}

.neu-card + .neu-card {
    margin-top: 1.5rem;
}

/* -----------------------------
   ROBLOX BUTTON
------------------------------ */
.roblox-btn {
    background: var(--card-bg);
    border: none;
    border-radius: 14px;
    padding: 0.9rem 1rem;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-weight: 500;
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;

    box-shadow:
        inset 4px 4px 8px var(--shadow-dark),
        inset -4px -4px 8px var(--shadow-light);

    transition: all 0.2s ease;
    text-decoration: none;
}

.roblox-btn:hover {
    box-shadow:
        inset 2px 2px 5px var(--shadow-dark),
        inset -2px -2px 5px var(--shadow-light);
}

.roblox-btn img {
    height: 22px;
}

/* -----------------------------
   CARD TEXT
------------------------------ */
.card-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-muted {
    font-size: 0.85rem;
    text-align: center;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* -----------------------------
   INFO PANEL
------------------------------ */
.info-panel {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info-icon {
    color: var(--accent);
    font-size: 1.2rem;
}

.info-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* -----------------------------
   TOP RIGHT ACTIONS
------------------------------ */
.top-actions {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
}

.action-btn {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;

    box-shadow:
        6px 6px 14px var(--shadow-dark),
        -6px -6px 14px var(--shadow-light);
}

.action-btn.primary {
    border: 1px solid var(--accent);
}

/* Split container */
.split-container {
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

/* Left side image */
.left-bg {
    flex: 0 0 48%;
    height: 100%;
    background-image: url("/assets/img/background.png");
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    filter: brightness(0.75);
}

/* Right side panel */
.right-panel {
    flex: 1;
    background: #06344b; /* same tone as Axon */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem;
}

/* Centered login box */
.login-content {
    max-width: 380px;
    width: 100%;
    text-align: left;
}

/* Brand styling */
.brand-logo img {
    width: 140px;
    margin-bottom: 20px;
}

.brand-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.brand-subtitle {
    color: #cfd5da;
    margin-bottom: 32px;
}

/* Login card */
.neu-card {
    background: #0d1417;
    padding: 20px 24px;
    border-radius: 10px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.08);
}

.card-title {
    color: white;
    margin-bottom: 12px;
    font-size: 1rem;
}

/* Roblox login button */
.roblox-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #10191c;
    border: 1px solid #2b3b3f;
    padding: 12px 18px;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.2s;
}

.roblox-btn img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.roblox-btn:hover {
    background: #182427;
}

/* Info panel */
.info-panel {
    display: flex;
    gap: 12px;
    background: #111719;
    padding: 14px 16px;
    border-radius: 8px;
    color: #bfc6c9;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.07);
}

.info-icon {
    color: #ff6961;
    font-size: 1.1rem;
}

/* Mobile responsive */
@media (max-width: 900px) {
    .split-container {
        display: flex;
        width: 100vw;
        height: 100vh; /* This is the part you were missing */
    }


    .left-bg {
        flex: 0 0 48%;
        height: 100%;
        background-image: url("/assets/img/background.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        filter: blur(3px) brightness(0.75);
    }


    .right-panel {
        height: 70vh;
        padding: 2rem;
    }
}

/* Axon-style greeting */
.hey-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
}

.welcome-title {
    font-size: 1.55rem;
    font-weight: 500;
    color: #d6e3e8;
    margin-bottom: 2rem;
}

/* Roblox sign-in button */
.roblox-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: #0f1a1d;
    border: 1px solid #1f2e32;
    padding: 14px 20px;
    border-radius: 10px;

    color: #d6e3e8;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;

    transition: 0.2s ease-in-out;
}

.roblox-button:hover {
    background: #152427;
    border-color: #2a3c40;
}

.arrow-icon {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-left: 6px;
}

/* Help link under button */
.help-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0088ff;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 12px;
}

.help-link:hover {
    text-decoration: underline;
}

.login-logo {
    width: 150px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
}

.login-logo img {
    width: 100%;
    height: auto;
    opacity: 0.92;
    filter: drop-shadow(0px 2px 8px rgba(0,0,0,0.45));
}

