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

:root {
    /* IDENTIDAD BEESLOG */
    --orange: #f28c28;
    --orange-dark: #df7613;

    /* PALETA DASHBOARD / SERVER MONITOR */
    --background: #15202e;
    --card: #1b2939;
    --surface: #1c2a3a;
    --surface-light: #24374b;

    --text: #eef2f5;
    --text-secondary: #c1c6cb;
    --muted: #7e8794;
    --muted-dark: #637181;

    --border: #ffffff12;
}


/* =========================
   BODY
========================= */

body {
    min-height: 100vh;

    font-family: Inter, Arial, Helvetica, sans-serif;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(242, 140, 40, .07),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(242, 140, 40, .05),
            transparent 30%
        ),
        var(--background);

    color: var(--text-secondary);
}


/* =========================
   LOGIN CONTAINER
========================= */

.login-container {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;
}


/* =========================
   LOGIN CARD
========================= */

.login-card {
    width: 100%;
    max-width: 430px;

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 14px;

    padding: 42px 40px 30px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .25),
        0 3px 10px rgba(0, 0, 0, .12);
}


/* =========================
   BRAND
========================= */

.brand {
    text-align: center;

    margin-bottom: 35px;
}

.brand-icon {
    width: 68px;
    height: 68px;

    margin: 0 auto 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: var(--orange);

    color: white;

    font-size: 31px;

    box-shadow:
        0 10px 25px rgba(242, 140, 40, .20);
}

.brand h1 {
    font-size: 32px;

    font-weight: 800;

    letter-spacing: -.8px;

    color: var(--text);
}

.brand h1 span {
    color: var(--orange);
}

.brand p {
    margin-top: 7px;

    color: var(--muted);

    font-size: 14px;
}


/* =========================
   INPUTS
========================= */

.input-group {
    margin-bottom: 21px;
}

.input-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 12px;

    font-weight: 600;

    color: var(--text-secondary);
}

.input-wrapper {
    height: 51px;

    display: flex;
    align-items: center;

    border: 1px solid var(--border);

    border-radius: 9px;

    background: var(--background);

    transition: .2s ease;
}

.input-wrapper:focus-within {
    border-color: var(--orange);

    background: #182432;

    box-shadow:
        0 0 0 3px rgba(242, 140, 40, .10);
}

.input-wrapper > i {
    width: 48px;

    text-align: center;

    color: var(--muted);

    font-size: 18px;
}

.input-wrapper input {
    flex: 1;

    height: 100%;

    border: none;
    outline: none;

    background: transparent;

    font-size: 14px;

    color: var(--text);

    padding-right: 10px;
}

.input-wrapper input::placeholder {
    color: var(--muted-dark);
}

.password-toggle {
    width: 48px;
    height: 100%;

    border: none;

    background: transparent;

    cursor: pointer;

    color: var(--muted);

    font-size: 17px;
}

.password-toggle:hover {
    color: var(--orange);
}


/* =========================
   OPTIONS
========================= */

.login-options {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin: 5px 0 25px;

    font-size: 11px;
}

.remember {
    display: flex;

    align-items: center;

    gap: 7px;

    color: var(--muted);

    cursor: pointer;
}

.remember input {
    accent-color: var(--orange);

    width: 15px;
    height: 15px;
}

.forgot {
    color: var(--orange);

    text-decoration: none;

    font-weight: 600;
}

.forgot:hover {
    text-decoration: underline;
}


/* =========================
   LOGIN BUTTON
========================= */

.login-button {
    width: 100%;
    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border: none;

    border-radius: 9px;

    background: var(--orange);

    color: white;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition: .2s ease;

    box-shadow:
        0 8px 20px rgba(242, 140, 40, .18);
}

.login-button i {
    font-size: 17px;

    transition: transform .2s ease;
}

.login-button:hover {
    background: var(--orange-dark);

    transform: translateY(-1px);

    box-shadow:
        0 11px 25px rgba(242, 140, 40, .25);
}

.login-button:hover i {
    transform: translateX(3px);
}

.login-button:active {
    transform: translateY(0);
}


/* =========================
   FOOTER
========================= */

.login-footer {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 7px;

    margin-top: 28px;

    color: var(--muted-dark);

    font-size: 9px;
}

.login-footer span:first-child {
    color: var(--muted);

    font-weight: 700;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {

    .login-container {
        padding: 18px;
    }

    .login-card {
        padding: 35px 25px 25px;

        border-radius: 13px;
    }

    .brand {
        margin-bottom: 30px;
    }

    .brand h1 {
        font-size: 29px;
    }

    .login-options {
        align-items: flex-start;

        gap: 10px;
    }

    .forgot {
        text-align: right;
    }
}