* {
    margin: 0;
}

body {
    background-size: cover;
    background: url(/static/backgroundloginv2.webp) no-repeat center;
    font-family: 'Inter', sans-serif;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.box {
    padding: 20px;
    box-sizing: border-box;
    box-shadow: var(--box-shadow);
    border-radius: 10px;

    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;

    background: var(--tile);
    width: 400px;
    max-width: 400px;
    height: auto;
}

#login-form > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

#balkans-banner {
    content: var(--banner-location);
    height: 64px;
}

span {
    font-size: 11px;
    font-weight: bold;
    width: 100%;
}

p {
    font-weight: bold;
    font-size: 16px;
}

input[type=submit] {
    display: inline-block;
    flex-grow: 0;
    font-size: 16px;
}

.button {
    font-weight: normal;
}

#sign-up {
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
}

#login-message {
    padding: 20px;
    width: 400px;
    background: var(--tile);
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    text-align: center;
    box-sizing: border-box;
}

#register-buttons {
    flex-direction: row !important;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 420px) {
    body {
        box-sizing: border-box;
        padding: 20px;
    }

    .box {
        width: 100%;
    }
}