/*------------------------------------- Custom styles ------------------------------------*/

:root {
	--hs-ui-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

body {
	height: 100%;
    font-family: var(--hs-ui-font);
    margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

/* ============> Text */
.txt-style1 {
    font-family: var(--hs-ui-font);
    font-size: 14px;
	line-height: 1.7;
	margin: 0px;
	color: #666666;
	text-align: center;
}

.txt-style2 {
    font-family: var(--hs-ui-font);
    font-size: 14px;
	line-height: 1.4;
	margin: 0px;
	color: #4C2CB8;
}

.link-wrapper {
	padding-bottom: 30px;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-ms-align-items: center;
}

a {
    font-family: var(--hs-ui-font);
    font-size: 14px;
	line-height: 1.7;
	text-decoration: none;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
	color: #9D8AB1;
}

/* ============> Form */

.form-main-container {
	width: 100%;  
	min-height: 100vh;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 15px;
	background: #99805c5c;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.form-wrapper {
	width: 500px;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.form-header {
	background: url(../img/header.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	position: relative;
	align-items: center;
	padding: 70px 15px 74px 15px;
	z-index: 1;
	flex-wrap: wrap;
	flex-direction: column;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.form-header::before {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.form-title {
    font-family: var(--hs-ui-font);
    font-size: 25px;
	color: #fff;
	line-height: 1.2;
	text-align: center;
	word-break: break-word;
}

.form-subtitle {
    font-family: var(--hs-ui-font);
    font-size: 18px;
	margin-top: 5px;
	color: #fff;
	line-height: 1.2;
	text-align: center;
	word-break: break-word;
}

.form-content {
	width: 100%;
	justify-content: center;
	align-items: center;
	padding: 50px 50px 50px 50px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
}

/* ============> Input */

input {
	outline: none;
	border: none;
}

.input-wrapper {
	width: 100%;
	position: relative;
	border-bottom: 1px solid #b2b2b2;
	margin-bottom: 26px;
}

.input-style {
    font-family: var(--hs-ui-font);
    font-size: 15px;
	color: #555555;
	line-height: 1.2;
	display: block;
	width: 100%;
	background: transparent;
	padding: 0 5px;
}

input.input-style {
	height: 45px;
}

.input-style-focus {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}

.input-style-focus::before {
	content: "";
	background: #4C2CB8;
	display: block;
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 0;
	height: 1px;

	-webkit-transition: all 0.6s;
	-o-transition: all 0.6s;
	-moz-transition: all 0.6s;
	transition: all 0.6s;
}

.input-style:focus + .input-style-focus::before {
	width: 100%;
}

.has-val.input-style + .input-style-focus::before {
	width: 100%;
}

/* ============> Button */

button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

.button-style {
	height: 50px;
	background-color: #99805c;
	border-radius: 5px;
	justify-content: center;
	align-items: center;
    font-family: var(--hs-ui-font);
    font-size: 16px;
	color: #fff;
	line-height: 1.2;
	padding: 0 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

.button-style:hover {
	background-color: #3f301c;
}

/* ============> Input Password */

.form-control {
    font-family: var(--hs-ui-font);
    font-size: 15px;
	color: #555555;
	border: transparent;
	padding: 0 5px 10px;
}

.form-control:focus {
  box-shadow: none !important;
}

.form-control-focus::before {
	content: "";
	background: #4C2CB8;
	display: block;
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 0;
	height: 1px;

	-webkit-transition: all 0.6s;
	-o-transition: all 0.6s;
	-moz-transition: all 0.6s;
	transition: all 0.6s;
}

.form-control:focus + .form-control-focus::before {
	width: 100%;
}

.has-val.form-control + .form-control-focus::before {
	width: 100%;
}

/* ============> Apply as Sitter */

.apply-page-content {
	flex-direction: column;
	align-items: stretch;
}

.apply-form-wrapper {
	width: 620px;
	max-width: 100%;
	border: 1px solid #e7dccd;
	box-shadow: 0 20px 45px rgba(121, 94, 61, 0.12);
}

.apply-form-header {
	background: url(../img/header_color.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
	min-height: 260px;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 26px 30px;
	overflow: hidden;
}

.apply-form-header::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 15px;
	background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
}

.apply-header-logo {
	height: 46px;
	width: auto;
}

.apply-text-section {
	width: 100%;
	margin-bottom: 24px;
}

.apply-page-title {
    font-family: var(--hs-ui-font);
    font-size: 30px;
	font-weight: 500;
	line-height: 1.15;
	color: #7f6547;
	margin: 0 0 10px 0;
}

.apply-page-subtitle {
    font-family: var(--hs-ui-font);
    font-size: 18px;
	line-height: 1.5;
	color: #92785b;
	margin: 0;
}

.apply-lead,
.apply-support-text {
    font-family: var(--hs-ui-font);
    font-size: 16px;
	line-height: 1.7;
	color: #555555;
	margin: 0 0 24px 0;
}

.apply-info-card {
	width: 100%;
	background: #fbf7f2;
	border: 1px solid #eadfce;
	border-radius: 8px;
	padding: 22px 22px 8px 22px;
	margin-bottom: 24px;
}

.apply-section-title {
    font-family: var(--hs-ui-font);
    font-size: 18px;
	font-weight: 500;
	color: #3f301c;
	margin-bottom: 14px;
}

.apply-checklist {
	margin: 0;
	padding-left: 20px;
	color: #555555;
}

.apply-checklist li {
    font-family: var(--hs-ui-font);
    font-size: 15px;
	line-height: 1.7;
	margin-bottom: 10px;
}

.apply-page-content .button-style {
	background-color: #b08c62;
	color: #fffdf9;
	box-shadow: 0 10px 20px rgba(176, 140, 98, 0.18);
}

.apply-page-content .button-style:hover {
	background-color: #8f6d46;
}

/* ============> Responsive */

@media (max-width: 576px) {
	.form-content {
		padding: 64px 32px 67px 30px;
	}

	.apply-info-card {
		padding: 18px 18px 4px 18px;
	}

	.apply-form-header {
		min-height: 220px;
		padding: 22px 22px;
		background-position: center bottom;
	}

	.apply-page-title {
		font-size: 26px;
	}
}

@media (max-width: 480px) {
	.form-content {
		padding: 43px 15px 57px 15px;
	}

	.label-input-style {
		text-align: left;
		position: unset;
		top: unset;
		left: unset;
		width: 100%;
		padding: 0 5px;
	}
}
