
#content-container
{
    justify-content: center;
    height: 100vh;
    background-color: #f8f9fa;
}

#content-wrapper
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 450px;
    height: 600px;
    border-radius: 25px;
    background-color: white;
    border: 1px solid lightgray;
    box-sizing: border-box;
    box-shadow: 5px 5px 10px gray;
}

#logo-container
{
    width: auto;
}

#form-container
{
    width: 400px;
}

form[action="login"] button[type="submit"]
{
    float: right;
    background-color: #194379;
    border-color: #194379;
    width: 130px;
}

.rounded-t-5 {
    border-top-left-radius:  0.5rem;
    border-top-right-radius: 0.5rem;
}

.form-label
{
    font-weight: bold;
}

@media (max-width: 992px) {
    #content-wrapper
    {
        justify-content: start;
        width: 100vh;
        height: 100vh;
        border-radius: 0px;
        border: none;
        box-shadow: none;
    }

    .form-label
    {
        width: 100%;
        text-align: left;
    }
}