body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    min-height: 800px;
    background-color: var(--color-background-dark);
}

h1, h2, h3, h4, h5, h6, p, label, a, button, input {
    color: var(--color-text-light);
}

#footer {
    position: fixed;
    left: 50%;
    bottom: 0;
    width: 100%;
    transform: translateX(-50%);
}

#main-container {
    width: 500px;
    height: 800px;
    height: fit-content;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--border-radius);
    padding-top: 120px;
    padding-bottom: 120px;
}

#text-content-header {
    margin-top: 20px;
    margin-bottom: 50px;
}

#text-content-header h1 {
    margin-bottom: 10px;
}

#logo {
    width: auto;
    height: 75px;
}

#logo img {
    width: inherit;
    height: inherit;
}

#form {
    width: 100%;
}

#form li {
    margin-bottom: 20px;
}

#options {
    margin-top: 20px;
    width: 100%;
    display: inline-flex;
}

#options li:has(#sign-in-button),
#options li:has(#register-button) {
    margin-left: auto;
}

#otp-form {
    display: none;
}

li:has(#resend-code-button) {
    display: none;
    margin-left: 10px;
}

#register-text {
    margin-top: 25px;
    text-align: center;
}

#register-text a {
    color: var(--color-primary);
}

@media(max-width: 600px) {
    body {
        justify-content: start;
        align-items: start;
    }

    #main-container {
        width: calc(100vw - 50px);
        padding: 25px;
        border-radius: 0;
    }
}