body {
    height: 100vh;
    background-image: url("/static/images/misc/login-tile.7bf60dbf6b36.png");
    background-color: black;
    letter-spacing: 0.1em;
    font-size: 16px;
    font-family: Monaco, monospace;
    color: white;
}

input {
  font-size: 16px;
}

a {
    color: #92ced3;
}

a:hover {
    color: #a633c0;
}

.splash_btns {
    justify-content: space-evenly;
}

.splash-btn {
    background-position: center;
    filter: grayscale(100%);
    display: flex;
    width: 70px;
    height: 70px;
    background-color: black;
    border: 1px solid #ddd;
    border-radius: 99px;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.1;
    transition: 500ms;
    color: white;
    text-shadow: -1px 1px 0 #000,
				  1px 1px 0 #000,
				 1px -1px 0 #000,
				-1px -1px 0 #000;
}

.splash_btns {
    padding-bottom: 1em;
}

.splash-btn:hover:not(.apply) {
    filter: grayscale(0%);
    border: 1px solid #92ced3;
}

.splash-btn.referral {
    background-image: url('https://images.neopets.com/caption/sm_caption_410.gif');
}

.splash-btn.apply {
    background-image: url('https://images.neopets.com/images/msn_buddy/msn_grundo_hiding.gif');
}

.splash-btn.rules {
    background-image: url('https://images.neopets.com/new_games/n536.gif');
}

#splash_container {
    min-height: 100%;
    width: max-content;
    background: url("/static/images/misc/login-transpara.96723ac06c11.png");
    margin: 0 auto;
    padding: 5% 5% 25% 5%;
}

#splash_box {
    width: 100%;
    max-width: 352px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

#box_left img {
    max-width: 352px;
}

.login-box.flex-column {
    gap: 1em;
}

.login-input.flex-column {
    gap: 0.25em;
}

#splashrules {
    width: 90%;
    max-width: 650px;
    margin: 0 auto;
    padding: 5%;
    background-color: black;
}

@media (min-width: 769px) {
    body {
        font-size: 16px;
    }
    input {
        font-size: 16px;
    }
    #splash_container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100%;
        width: 724px;
        background: url("/static/images/misc/login-transpara.96723ac06c11.png");
        margin: 0 5%;
        padding: 20px;
    }

    #splash_box {
        max-width: 100%;
        flex-direction: row;
        gap: 20px;
        position: relative;
        left: 0%;
    }

    #splashrules {
        width: 85%;
        margin: 0 0 0 5%;
    }
}