body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: linear-gradient(90deg, #fafafa 50%, #f2f2f2 50%);
}

.auth_wrapper {
    min-height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth_card {
    width: 60%;
}

.auth_header {
    margin-bottom: 20px;
}

.small_auth_label {
    color: #909090;
    font-size: 14px;
}
.form_field {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form_field label {
    font-weight:600
}
.form_error {
    color: red;
    margin-bottom: 0;
}

.form_field_input {
    padding: 10px 10px;
    background: none;
    border: 1px solid rgb(190, 190, 190);
    border-radius: 5px;
    margin-top: 8px;
}

.form_btn_btn {
    width: 100%;
    border: none;
    color: white;
    font-family: sans-serif;
    font-weight: 100;
    padding: 5px 0;
    border-radius: 5px;
    background-color: #3069fd;
}


.auth_alternatives {
    margin-top: 40px;
}
.auth_alternatives a {
    text-decoration: none;
}

.alert {
    margin-top: 10px;
    padding: 5px 10px;
}