* {
	font-family: Helvetica;
}
.container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.row {
	display: flex;
}
.full-height {
	min-height: 100vh;
}
.flex-40 {
	width: 40%;
	display: flex;
	flex-direction: column;
	min-width: 500px;
	align-items: center;
	justify-content: center;
	background: #f8f8f8;
}
.flex-60 {
	width: 60%;
	background: linear-gradient(to right, #093a69, #336a9c);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.flex-60 .logo {
	width: 250px;
	position: absolute;
	top: 20px;
	left: 20px;
}

.logo img {
	width: 100%;
}
.description {
	color:  #fff;
	text-align: center;
}
.description h1 {
	font-size: 40px;
	font-weight: bold;
}

.form {
	width: 400px;
}
.content {
	display: flex;
	min-height: 600px;
	flex-direction: column;
	justify-content: space-evenly;
}
.content-head {
	position: absolute;
	top: 50px;
}
.content-head h3 {
	font-size: 22px;
	font-weight: bold;
	color: #0f375e;
}
.form-heading h4 {
	font-weight: 500;
	margin-bottom: 15px;
}
.form-group {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 15px;
	position: relative;
}
.form-group span {
	position: absolute;
	right: 2px;
	bottom: 3px;
	line-height: 42px;
	padding: 0 10px;
	color: #777;
	background-color: #fff;
	border-left: #eee solid 1px;
	border-radius: 0;
}
.form-group input:not([type = 'checkbox']) {
    border: #eee solid 2px !important;
	height: 50px;
	padding: 8px;
	border-radius: 8px;
}
.form-group label {
	color: #444;
    font-weight: 600;
    margin-bottom: 5px;
}

.form button {
	background: #2b547b;
	color:  #fff;
	height: 50px;
	font-size: 16px;
}
.btn {
    cursor: pointer;
}
@media only screen and (max-width: 900px) {
	.flex-60 {
	  display: none;
	}
	.flex-40 {
		width: 100%;
		min-width: 250px;
	}
  }
  
  .form-otp {
	transform: translateY(30%);
		max-width: 500px;
	  padding: 50px;
	  border-radius: 8px;
  }
  
  .form-otp .form-floating:focus-within {
	z-index: 2;
  }
  .form-otp input {
	  padding: 12px !important;
	  border: #eee solid 2px !important;
  }
  .form-otp .form-group label {
	  font-weight: 600;
	  margin-bottom: 5px;
  }
  .otp {
	display: flex;
	flex-direction: row;
	gap: 10px;
  }