.bg-row {
  position: relative;
  background-image: url('/img/login_background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height:400px;
}

.bg-row::before{
 content: "";
  position: absolute;
  background: rgba(37, 99, 235, 0.5);
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-row > * {
  position: relative;
  z-index: 1;
}

.form_container{
	background-color:rgb(240, 244, 255);
	width:100vw;
	height:100vh;
	display:flex;
	align-items: center;
	justify-content: center;
}

.form_wrapper{
	background-color:white;
	padding:30px;
	border-radius:10px;
	box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
}

.form-wrapper-header{
	color: var(--primary-color-header);
}