.modal-bg
{
    position: fixed;
    width:100vw;
    height: 100vh;
    background: var(--primaryThree);
    display:flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
}
.login-form-container
{
    background-color: white;
    box-shadow: var(--dropshadow);
    padding:25px;
    border-radius: 8px;
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.login-form-container img
{
    width: 200px;
}
.login-form-container div
{
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}
.login-form-container input
{
    width:100%;
    border-radius: 4px;
    padding: 12px;
    outline: none;
    border: 1px solid var(--primaryThree);
    
}
.login-form-container input:focus
{
    border: 1px solid var(--primaryTwo);
}
.alert-box-red
{
    width:100%;
    background-color: var(--secondary-strawberry);
    padding: 5px 10px;
    text-align: center;
    color:white;
    border-radius: 4px;
}
.alert-box-green
{
    width:100%;
    background-color: var(--secondary-apple);
    padding: 5px 10px;
    text-align: center;
    color:white;
    border-radius: 4px;
}
@media (max-width: 650px)
{
    .login-form-container
    {
        width:100vw;
        height: 100vh;
        border-radius: 0;
    }
    .login-form-container div
    {
        height: 100vh;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }
}