.wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f0f1f3;
	height: calc(100vh - 60px);
}

@media (max-width: 360px) {
	.wrapper {
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: #f0f1f3;
		height: auto;
	}
}

.content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
	width: 100%;
	height: 100%;
	padding: 20px;
}

.form {
	background-color: #f0f1f3;
	padding: 16px;
}

@media (max-width: 360px) {
	.form {
		background-color: #f0f1f3;
		padding: 20px 8px;
	}
}

.brand {
	background: url(../../media-storage/1.jpg) !important;
	background-size: cover !important;
	background-position: center center !important;
}

@media (max-width: 850px) {
	.form {
		background: url(../../media-storage/1.jpg) !important;
		background-size: cover !important;
		background-position: center center !important;
	}

	.brand {
		display: none;
	}
}

.form-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: 360px;
	text-align: center;
	width: 100%;
	padding: 32px 12px 16px 12px;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: rgba(99, 99, 99, 0.16) 0px 2px 8px 0px;
}

.form-holder {
	width: 100%;
	max-width: 300px;
}

.form-header {
	padding-bottom: 16px;
}

.form-header__title {
	font-size: 1.4rem;
}

/* Login form */
.form-content {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 300px;
}

.input-row {
	padding-bottom: 6px;
	position: relative;
}

.input-row.divider {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 10px 0px 16px 0px;
}

.divider__line {
	height: 1px;
	background-color: rgba(0, 0, 0, 0.08);
	flex: 1;
}

.divider__label {
	font-size: 14px;
	color: rgba(0, 0, 0, 0.5);
}

.input-row.details {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}

.details__recaptcha {
	position: relative;
	height: 25px;
}

#custom-recaptcha {
	position: absolute;
	z-index: 99;
	bottom: 0px;
	right: 0px;
	width: 24px;
	height: 24px;
	overflow: hidden;
	text-align: left;
	font-size: 12px;
	white-space: nowrap;
	border-radius: 3px;
	line-height: normal;
	background: #fff;
}

.details__remember-me {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	line-height: 15px;
}

.button-auth {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: 100%;
	height: 40px;
	border-radius: 4px;
	transition: background-color .218s, border-color .218s;
	background-color: #fff;
	background-image: none;
	border: 1px solid #dadce0;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	height: 40px;
	letter-spacing: 0.25px;
	outline: none;
	overflow: hidden;
	padding: 0 12px;
	position: relative;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
}

.auth__label {
	color: rgba(0, 0, 0, 0.74);
	font-weight: 500;
}

.auth__icon {
	width: 20px;
	height: 20px;
}

.input-login {
	width: 100%;
	margin-top: 0px !important;
}

.btn-spinner {
	width: 100%;
	background-position: center;
	display: none;
}

span.invalid {
	display: block;
	color: #e67e22;
	background: 0 0;
	font-size: 12px;
	line-height: 16px;
	margin-top: 8px;
}

.form-loginlink {
	text-align: center;
	margin-top: 16px;
}

.hidden {
	display: none !important;
	visibility: hidden !important;
}

.btn.disabled {
	cursor: not-allowed;
	pointer-events: none;
	background-color: #d0d3d9;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.btn-mp.btn-loading {
	background-image: url(/images/icon/spinner.gif);
	background-size: auto 50%;
	background-position: center center;
	background-color: #ced2d5 !important;
	background-repeat: no-repeat;
	transition: none !important;
}

.btn-spinner {
	width: 100%;
	background-position: center;
	display: none;
}

.btn-loading span#spinner {
	display: block;
}

.btn-loading span#text {
	visibility: hidden;
}