/* -----------------------------
   ROOT + RESET
------------------------------ */
:root {
    --bg: #eef1f4;
    --card-bg: #edf0f3;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --accent: #2563eb;

    --shadow-light: rgba(255, 255, 255, 0.9);
    --shadow-dark: rgba(163, 177, 198, 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: 120px;
    height: 120px;
    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%;
    object-fit: contain;
}


.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);
}
