.login-outer {
	display: flex;
    flex: 1;
}

.main {
    display: flex;
    width: 100%;
    height: 100%;
}

.campaign-container {
	height: 100%;
	display: flex;
	flex: 1;
	flex-direction: column;
    padding: 0 70px;
    padding-top: 50px;
}

.register-form-wrapper {
	width: 100%;
	height: calc(100% - 80px);
	margin-bottom: 10px;
	overflow: auto;
}

.campaign-header {
	font-size: xx-large;
	font-weight: 700;
	padding-top: 30px;
    padding-bottom: 30px;
}

.reg-form {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-right: 10px;
}

.custom-input-group {
	padding-bottom: 20px;
	position: relative;
    flex: 1;
}

.acount-info .two-col-group .custom-input-group:nth-child(odd) {
	margin-right: 15px;
}

.acount-info .two-col-group .custom-input-group:nth-child(even) {
	margin-left: 15px;
}

.company-info .two-col-group .custom-input-group:nth-child(odd) {
	margin-right: 15px;
}

.company-info .two-col-group .custom-input-group:nth-child(even) {
	margin-left: 15px;
}

.two-col-group {
	display: flex;
}

.cp-list-fn-container {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 999;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
    width: 30px;
    margin-left: 7px;
}

.exclaimation {
	right: 10px;
	width: 25px !important;
	height: 40px !important;
	color: #FF4500 !important;
}

.error-txt {
	margin-top: 0;
}

.no-margin-bottom {
	margin-bottom: 0;
}

.form-control:focus {
  box-shadow: none;
  border-color: #ced4da;
}

input[id='companyAddress'], input[id='addr1'], input[id='addr2'] {
	margin-bottom: 10px !important;
}

.reg-btn-container {
	height: 40px;
	display: flex;
	justify-content:flex-end;
    margin-bottom: 30px;
}

.reg-btn-container>button {
	width: 120px;
	border-radius: 20px;
}

#forgot-message-success {
	flex-direction: column;
}

.success-txt {
	font-weight: 700;
}

.login-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: 40px;
	margin-right: 600px;
	flex: 1;
}

.redirect {
	color: #aaa;
}

.btl {
	padding-bottom: 10px;
}

.back-to-login {
	color: #284FDA !important;
	font-weight: 700;
	font-size: 18px;
}

.login-title {
	font-weight: 700;
	padding-bottom: 70px;
}
#submit-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}
input {
	border-radius: 0.25rem !important;
	padding-right: 40px !important;
}
img[type="small"] {
	display: none;
}
img[type="large"] {
    width: 100%;
    height: auto;
}
.checkbox-container {
    display: flex;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-bottom: 0 !important;
    align-items: center;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 1px solid #ced4da;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #284FDA;
	border-color: transparent;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #284FDA;
	border-color: transparent;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    width: 8px;
    height: 14px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(33deg);
    -ms-transform: rotate(33deg);
    transform: rotate(33deg);
}

#success-message-block h2 {
	padding-bottom: 50px;
}

@media (max-width: 768px) {
	img[type="small"] {
		display: block;
		width: 100%;
	}
	img[type="large"] {
		display: none;
	}
	.login-outer {
		border: 1px solid white;
		background: white;
		border-radius: 20px;
		justify-content: center;
		margin: 280px 10px 10px 10px;
		flex: none !important;
		width: calc(100% - 20px);
	}
	.main {
		flex-direction: column;
		background-image: url(/resources/images/login_cover_mobile.png);
		background-repeat: no-repeat;
		background-attachment: fixed;
		background-position: center top;
		background-color: #284FDA;
		position: relative;
		overflow: scroll;
		display: flex;
	}
	.campaign-container {
		padding: 10px;
	}
	.campaign-header {
		padding-top: 16px;
		padding-bottom: 16px;
		font-size: x-large;
	}
	.two-col-group {
		flex-direction: column;
	}
	.acount-info .two-col-group .custom-input-group:nth-child(odd), .company-info .two-col-group .custom-input-group:nth-child(odd) {
		margin-right: 0;
	}
	.acount-info .two-col-group .custom-input-group:nth-child(even), .company-info .two-col-group .custom-input-group:nth-child(even) {
		margin-left: 0;
	}
	input[id='companyAddress'], input[id='addr1'], input[id='addr2'] {
		margin-bottom: 0 !important;
	}
	.checkmark {
		min-width: 18px;
		min-height: 18px;
		margin-top: 5px;
	}
	.checkbox-container {
		align-items: flex-start;
	}
	body {
		height: max-content;
	}
}