/* facc_login.css */

.content {
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    align-items: center;
    justify-content: center;
    height: 600px;
}

.login_overall {
    display: flex;
    flex-direction: column;
    align-self: center;
}

#login_fieldset {
    background-color: white;
}

.login_element_group {
    display: flex;
    flex-direction: column;
}

.login_element {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 10px;
}

.login_label {
    width: 6em;
    margin-right: .5em;
}

.login_input {
    margin-right: 1em;
}

.login_button {
    width: 5em;
    margin-right: 2em;
}

.login_invalid {
    margin-left: 2em;
}

#forgot_email_label {
    width: 8em;
    margin-right: .5em;
    
}