* {
    box-sizing: border-box;
}

:root {
    --background: #07111f;
    --panel: #0d1b2d;
    --border: #1d3047;
    --text: #f4f7fb;
    --muted: #8292a8;
    --blue: #2f80ed;
    --green: #20d68f;
    --red: #ff5c69;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background:
        radial-gradient(
            circle at 50% 20%,
            #102846 0,
            #07111f 38%,
            #050c16 100%
        );

    color: var(--text);
}

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

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

    padding: 25px;
}

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

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.025),
            transparent
        ),
        var(--panel);

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

    border-radius: 15px;

    padding: 34px;

    box-shadow:
        0 30px 100px rgba(0,0,0,.45);
}

.logo {
    width: 50px;
    height: 50px;

    margin: 0 auto 18px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #246bfd,
            #22c1ff
        );

    font-size: 21px;
    font-weight: 800;

    box-shadow:
        0 10px 30px rgba(47,128,237,.25);
}

.title {
    text-align: center;
}

.title h1 {
    margin: 0;
    font-size: 21px;
}

.title p {
    color: var(--muted);
    margin: 7px 0 0;
    font-size: 12px;
}

.separator {
    height: 1px;
    background: var(--border);
    margin: 26px 0;
}

label {
    display: block;

    color: var(--muted);

    font-size: 12px;

    margin-bottom: 17px;
}

input {
    width: 100%;

    margin-top: 7px;

    padding: 12px 13px;

    color: white;

    background: #081523;

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

    outline: none;

    transition: .15s;
}

input:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(47,128,237,.08);
}

button {
    width: 100%;

    border: 0;
    border-radius: 8px;

    padding: 12px;

    color: white;

    background: var(--blue);

    font-weight: 650;

    cursor: pointer;
}

button:hover {
    filter: brightness(1.08);
}

button:disabled {
    opacity: .6;
    cursor: wait;
}

.error {
    min-height: 20px;

    color: var(--red);

    font-size: 12px;

    margin-bottom: 10px;
}

.security {
    margin-top: 25px;

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

    gap: 7px;

    color: var(--muted);

    font-size: 11px;
}

.security span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 10px var(--green);
}
