body, html{
    background-color: black;
    color: white;
    font-family: "Karla";
    margin: 0;
    padding: 0;
    height: 100%;
}

.login_box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5%;
    gap: 20px;
}
.login_box p{
    margin: 0;
}

.flex_with_gap{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#crbn_logo{
    max-height: 30px;
}
#team_program{
    max-height: 70px;
}

.login_flex_container{
    gap: 20px;
    z-index: 4;
    width: 500px;
    margin: auto;
    padding-top: 100px;
}

.login_flex_box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: auto;
    background: black;
    opacity: 0.8;
}


.login_input_flex{
    display: flex;
    width: 100%;
}

.background_box {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../images/login/login_background.png');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center top;
}

.login_form_container{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
    justify-content: center;
    align-items: center;
    background-color: lightgrey;

}
.form_box{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
    justify-content: space-evenly;
    align-items: center;
    color: black;
    min-height: 50vh;
    gap: 20px;
}
.form-errors{
    color: black;
    font-size: 18px;
    margin: 0;
    padding: 0;
    text-align: center;
}
.messages{
    color: red;
    font-size: 16px;
    margin: 0;
    padding: 0;
    text-align: center; 
}

.login_footer_flex{
    display: flex;
    flex-direction:  column;
    justify-content: center;
    align-items: center;
    margin: auto;
    gap: 20px;
    padding-bottom: 30px;
}

.bw_button{
    background-color: black;
    color: white;
    border: white solid 1px;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 50%;
    margin: 0;
    text-align: center;
}

.bw_button:hover{
    background-color: white;
    color: black;
    border: black solid 1px;
}