body {
    font-family: "League Spartan", sans-serif;
    font-weight: 800;
    padding: 0;
    margin: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
}

main {
    background-image: url("./img/index-bg.png");
    background-color: black;
    width: 400px;
    height: 500px;
    position: relative;
    border: solid rgb(15, 20, 30) 6px;
}

.button {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    display: inline-block;
    color: rgb(90, 160, 255);
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(90,160,255,.6);
    /* transition: .15s; */
}

.button:hover {
    color: white;
    text-shadow:
        0 0 5px white,
        0 0 15px rgb(90,160,255);
    transform: scale(1.08);
    cursor: pointer;
}

#settings-back-btn {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    display: inline-block;
    color: rgb(90, 160, 255);
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(90,160,255,.6);
}

#settings-back-btn:hover {
    color: white;
    text-shadow:
        0 0 5px white,
        0 0 15px rgb(90,160,255);
    cursor: pointer;
}

#home-screen-play-btn {
    position: absolute;
    top: 200px;
    left: 65px;
}

#home-screen-settings-btn {
    position: absolute;
    top: 240px;
    left: 65px;
}



#settings-container {
    color: rgb(90, 160, 255);
    position: absolute;
    left: 65px;
    top: 150px;
    visibility: hidden;
    width: 100%;
    height: 100%;
    background-color: "rgb(30, 30, 30)";
}

.option {
    /* border: 1px solid; */
    width: 150px;
    margin: 20px 0;
    padding: 0;
}

.option h3 {
    margin: 5px 0px;
    padding: 0;
}

#settings-back-btn {
    position: absolute;
    top: 250px;
    left: 95px;
    margin: 0;
    padding: 0;
}






#login-container {
    visibility: hidden;
    position: absolute;
    z-index: 100;

    width: 260px;
    padding: 25px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;

    background: rgb(15, 20, 30);
    border: 3px solid rgb(90, 160, 255);
    border-radius: 4px;

    box-shadow:
        0 0 0 2px rgb(30, 40, 55),
        0 8px 0 rgb(5, 8, 12);
}


/* ---------- TITLE ---------- */

#login-title {
    text-align: center;
}

#login-title h2 {
    margin: 0;

    color: white;
    font-size: 36px;
    line-height: 1;

    letter-spacing: 4px;
    text-transform: uppercase;
}

#login-title p {
    margin: 7px 0 0;

    color: rgb(140, 155, 180);
    font-size: 14px;

    letter-spacing: 3px;
    text-transform: uppercase;
}


/* ---------- FORM ---------- */

#login-form {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 10px;
}

#login-form input {
    box-sizing: border-box;

    width: 100%;
    height: 42px;

    padding: 0 12px;

    font-family: inherit;
    font-size: 16px;
    font-weight: 800;

    color: white;
    background: rgb(8, 11, 17);

    border: 2px solid rgb(45, 55, 70);
    border-radius: 2px;

    outline: none;

    transition:
        border-color .12s,
        box-shadow .12s;
}

#login-form input::placeholder {
    color: rgb(100, 110, 125);
}

#login-form input:focus {
    border-color: rgb(90, 160, 255);

    box-shadow:
        0 0 0 2px rgba(90, 160, 255, 0.15);
}


/* ---------- BUTTONS ---------- */

#login-form .button {
    width: 100%;
    margin-top: 4px;
}

#login-form .secondary {
    color: rgb(180, 190, 205);

    /* background: rgb(30, 38, 50); */
    border-bottom-color: rgb(15, 20, 28);
    font-size: 12px;
}

#login-form .secondary:hover {
    color: white;
}


/* ---------- STATUS ---------- */

#login-status {
    min-height: 18px;

    margin: -8px 0 0;

    color: rgb(255, 120, 120);
    font-size: 14px;
    text-align: center;
}

#or {
    padding: 0;
    margin: 0;
    color: white;
    font-weight: 100px;
    font-size: 14px;
}

#error-message {
    visibility: hidden;
    position: absolute;
    top: 300px;
    color: white;
    background-color: rgb(121, 4, 4);
    width: 200px;
    border-radius: 2px;
    text-align: center;
}

#error-message p {
    padding: 5px;
    margin: 0;
    font-weight: 100px;
}