
.index {
	height: 100vh;
	padding: 8rem 18rem 0;
	background-image: url('../../images/profile/login-cover.webp');
	background-size: cover;
	background-repeat: no-repeat;
}
.index main {
	display: flex;
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	overflow: hidden;
}
.index .form-side {
	display: flex;
	flex-direction: column;
	flex-basis: 53%;
	padding: 4%;
}
.index .photos-side {
	display: flex;
	flex-direction: column;
	flex-basis: 47%;
	min-height: 600px;
	background: #eeeeee url('../../images/profile/index-slide.webp') center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.index .form-side .image-wrap img {
	width: 340px;
}
.index .form-side .line {
	width: 336px;
	margin: 10px 0;
	border-bottom: 1px solid #bbbbbb;
}
.index .form-side .welcome {
	margin: 10px 0;
}

.index .form-side .the-form {
	margin-top: 2%;
	width: 94%;
}
.index .form-side .credential {
	margin-bottom: 8px;
}
.index .form-side .credential .input-label {
	display: block;
	line-height: 30px;
}
.index .form-side .credential .field {
	background-color: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 3px;
	/*padding-right: 20px;*/
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.index .form-side .credential .field .login-text {
	/*width: 94%;*/
	flex-grow: 1;
	height: 38px;
	padding: 0 12px;
	background-color: #eeeeee;
	border: none;
	border-right: 1px solid #cccccc;
	caret-color: #333333;
	color: #333333;
	font-size: 0.95em;
}
.index .form-side .credential.highlight .field {
	border-color: #ff0000;
}
.index .form-side .credential .field .login-text:focus {
	background-color: var(--form_element_focus_bgcolor);
	box-shadow: 0 0 0 2px var(--form_element_focus_border);
	border-radius: 3px 0 0 3px;
}
.index .form-side .credential .field .icon {
	font-size: 18px;
	width: 3rem;
	text-align: center;
}
.index .form-side .credential .field .show-password {
	margin-right: 14px;
	cursor: pointer;
	position: absolute;
	right: 9%;
	display: none;
}
.index .form-side .credential .field .show-password.show {
	display: inline-block;
}
.index .form-side .credential .field .show-password::after {
	content: '\f070';
	font-family: 'Font Awesome 6 Pro';
}
.index .form-side .credential .field .show-password.reveal::after {
	content: '\f06e';
}

.index .form-side .checkbox-wrap {
	display: flex;
	align-items: center;
	margin-top: 18px;
	cursor: pointer;
	position: relative;
}
.index .form-side .checkbox-wrap input {
	appearance: none;
	color: inherit;
	cursor: pointer;
}
.index .form-side .checkbox-wrap input::before {
	display: inline-block;
	content: "";
	width: 34px;
	height: 34px;
	background-color: #eeeeee;
	outline: 1px solid #cccccc;
	border-radius: 3px;
}
.index .form-side .checkbox-wrap input:checked::after {
	position: absolute;
	left: 0;
	width: 34px;
	line-height: 34px;
	text-align: center;
	content: "\f00c";
	font-family: 'Font Awesome 6 Pro';
	font-size: 18px;
}
.index .form-side .checkbox-wrap .checkbox-label {
	margin-left: 10px;
}

.index .form-side .the-form .buttons {
	margin-top: 20px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.index .form-side .the-form .buttons .submit-btn {
	width: 34%;
	padding: 12px 20px;
	font-family: var(--font_family_medium);
	cursor: pointer;
	color: #ffffff;
	background-color: #248496;
	border-radius: 4px;
	border: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.index .form-side .the-form .buttons .submit-btn:hover {
	background-color: #0c768a;
}
.index .form-side .the-form .buttons .submit-btn:focus {
	background-color: #0c768a;
	box-shadow: 0 0 0 2px #b6d6dc;
}
.index .form-side .the-form .buttons .submit-btn.processing .icon::before {
	content: "\f110";
}
.index .form-side .the-form .buttons .submit-btn.processing .icon {
	animation: spinner 1s linear infinite;
	font-size: 1.1em;
}
.index .form-side .the-form .buttons .forgot {
	margin-left: 20px;
	text-decoration: none;
}
.index .form-side .the-form .buttons .forgot:hover {
	text-decoration: underline;
}

.index .form-side .error {
	margin: 4px 0;
}
.index .form-side .error.show {
	display: inline-block;
}

.index .version {
	float: right;
	margin-top: 20px;
	display: inline-block;
	padding: 6px 14px;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 3px;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}


@keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}