:root {
    --color-primary: #0c3a73;
}
@font-face {
  font-family: 'Poppins-Regular';
  src: url('../fonts/Poppins-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
body, 
html {
    font-family: 'Poppins-Regular' !important;
    margin: 0;
	padding: 0;
	height: 100%;
	background: #f3f3f3 !important;
}

.user_card {
    /*height: 300px;*/
    width: 600px;
    margin-top: auto;
    margin-bottom: auto;
    background: var(--color-primary);
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 5px;

}
.brand_logo_container {
    position: initial;
    top: 0;
    height: auto;
    padding: 10px;
    text-align: center;
}
.brand_logo {
    height: 100px;
    font-size: 80px;
    line-height: 100px;
    color: #fff;
}
form#signIn,
form#forgotPassword {
    width: 100%;
    padding: 15px;
}
.form_container {
    margin-top: 10px;
}
.login_btn {
    width: 100%;
    background: #fff !important;
    color: #000 !important;
}
.login_btn:focus {
    box-shadow: none !important;
    outline: 0px !important;
}
.login_container {
    padding: 0 2rem;
}
.input-group-text {
    background: #fff !important;
    color: #000 !important;
    border: 0 !important;
    border-radius: 0.25rem 0 0 0.25rem !important;
}
.input_user,
.input_pass:focus {
    box-shadow: none !important;
    outline: 0px !important;
}

.links a {
    color: #fff !important;
    text-decoration: underline;
}

label.error {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 0 !important;
    color: red;
    font-weight: bold;
}

.image_spinner {
  width: 110px !important;
}

.login-flex {
    display: flex;
}

@media (max-width: 500px) {
    .login-flex {
        display: grid;
    }

}