html {
    height: 100dvh;
}

body {
    background-image: url('/build/assets/auth_background-BOO08SAZ.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
}

.site-container {
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.shout-logo {
    width: 266px;
    height: 133px;
    margin-bottom: 90px;
}

#mobile-logo {
    display: none;
}

.auth-container {
    /*width: 480px;*/
    /*height: 400px;*/
    border-radius: 40px;
    border: rgba(209, 214, 219, 0.4) 4px solid;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(12.5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    padding: 0 30px 30px 30px;
}

.auth-title {
    color: white;
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    height: 54px;
    margin-top: 39px;
    margin-bottom: 0;
}

.auth-form {
    margin-top: 13px;
    width: 414px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-container {
    width: calc(100% - 34px);
    height: 38px;
    padding: 6px 14px;
    margin-top: 23px;
    border-radius: 15px;
    border: 3px solid rgba(209, 214, 219, 0.40);
    flex-shrink: 0;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.input-field {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Avenir Next', sans-serif;
    height: 36px;
    color: white;
    width: 100%;
    border: none;
    outline: none;
    background: none;
}

.input-field::placeholder {
    color: rgba(209, 214, 219, 0.4);
}

.input-container:focus-within {
    border: 3px solid var(--highlight);
    box-shadow: 0 0 15px 2px var(--highlight);
}

.text-link {
    margin: 16px 0 0 6px;
    color: white;
    font-size: 15px;
    align-self: flex-start;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.text-link:hover {
    color: var(--highlight);
}

.form-submit {
    margin-top: 36px;
}

.auth-text {
    margin: 16px 0 20px 0;
    color: white;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    width: 414px;
}

/* Media Queries */
@media only screen and (max-width: 600px) {
    #desktop-logo {
        display: none;
    }

    #mobile-logo {
        display: block;
        margin-top: 60px;
        width: 200px;
        height: 100px;
        margin-bottom: 60px;
    }

    .site-container {
        justify-content: flex-start;
        align-items: center;
        height: 100dvh;
    }

    .auth-title {
        margin-top: 10px;
    }

    .auth-container {
        height: 100%;
        width: 100%;
        border-radius: 0;
        border: none;
        margin-bottom: 0;
        padding: 0;
        align-items: center;
        justify-content: flex-start;
    }

    .auth-form {
        width: calc(100% - 30px);
        margin: 0;
        padding: 0 15px;
    }

    .auth-text {
        width: 100%;
    }
}
