body, html {
	height: 100%;
	width: 100%;
}


@font-face {
	font-family: 'Avenir-Roman';
	src: url('Avenir-Roman.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'IcedEarth';
	font-style: normal;
	font-weight: normal;
	src: local('IcedEarth'), url('icedeart.woff') format('woff');
}


body {
	background: hsla(197, 100%, 5%, 1);
	background: linear-gradient(90deg, hsla(197, 100%, 5%, 1) 0%, hsla(190, 100%, 23%, 1) 33%, hsla(181, 88%, 31%, 1) 66%, hsla(160, 41%, 70%, 1) 100%);
	background: -moz-linear-gradient(90deg, hsla(197, 100%, 5%, 1) 0%, hsla(190, 100%, 23%, 1) 33%, hsla(181, 88%, 31%, 1) 66%, hsla(160, 41%, 70%, 1) 100%);
	 background: -webkit-linear-gradient(90deg, hsla(197, 100%, 5%, 1) 0%, hsla(190, 100%, 23%, 1) 33%, hsla(181, 88%, 31%, 1) 66%, hsla(160, 41%, 70%, 1) 100%); 
	
}

.LoginContMain {
	width: 100%;
	height: 100%;
}


.loginLeft {
	color: #E9D8A6;
	width: 300px;
	height: 400px;
	z-index: 9;
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
	background-color: rgba(0, 18, 25,0.3);
	border-left: 1px solid rgb(148, 210, 189);
	border-top: 1px solid rgb(148, 210, 189);
	border-bottom: 1px solid rgb(148, 210, 189);
}

.loginRight {
	color: #E9D8A6;
	padding: 20px;
	width: 400px;
	height: 403px;
	z-index: 10;
	background-color: rgba(0, 18, 25,0.7);
	box-shadow: -2px 0.5px 3px 1px rgba(0, 0, 0, 0.5);
	border-top-right-radius: 25px;
	border-bottom-right-radius: 25px;
	border: 2px solid rgb(148, 210, 189);
}

.loginContainer {
	display: flex;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.CompInfo {
	margin-left: 20px;
	margin-right: 20px;
}

.CompanyImage {
	width: calc(100% - 40px);
	margin: 30px 20px 0 20px;
	object-fit: contain;
}

.kiviLogo {
	width: 15%;
	position: absolute;
	left: 10px;
	bottom: 10px;
}

@media only screen and (max-width:700px) {
	.loginLeft {
		border-radius: 0 0 25px 25px;
		width: 100%;
		height: 60%;
	}

	.loginRight {
		border-radius: 25px 25px 0 0;
		width: 100%;
		height: 40%;
		box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
}

	.loginContainer {
		width: 90%;
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}
}


.LoginBtn {
	margin-top: 10px;
	border: 1px solid rgb(148, 210, 189);
	background-color: #0A9396;
	color: #E9D8A6;
}

.LoginBtn:hover {
	background-color: #005F73;
}
	.LoginBtn:disabled {
		background-color: #005F73;
	}



.hyFooter {
	z-index: -1;
	color: #E9D8A6;
	position: absolute;
	bottom: 5px;
	right: 10%;
	opacity: 0.5;
}






input:-webkit-autofill,
input:-webkit-autofill:focus {
	transition: background-color 600000s 0s, color 600000s 0s;
}


.form__group {
	position: relative;
	padding: 15px 0 0;
	margin-top: 10px;
	width: 100%;
}

.form__field {
	font-family: inherit;
	width: 100%;
	border: 0;
	border-bottom: 2px solid #E9D8A6;
	outline: 0;
	font-size: 1.3rem;
	color: #E9D8A6;
	padding: 7px 0;
	background: transparent;
	transition: border-color 0.2s;
}

	.form__field::placeholder {
		color: transparent;
	}

	.form__field:placeholder-shown ~ .form__label {
		font-size: 1.3rem;
		cursor: text;
		top: 20px;
	}

.form__label {
	position: absolute;
	top: 0;
	display: block;
	transition: 0.2s;
	font-size: 1rem;
	color: #E9D8A6;
}

.form__field:focus {
	padding-bottom: 6px;
	font-weight: 700;
	border-width: 3px;
	border-image: linear-gradient(to right, rgb(0, 95, 115), rgb(148, 210, 189));
	border-image-slice: 1;
}

	.form__field:focus ~ .form__label {
		position: absolute;
		top: 0;
		display: block;
		transition: 0.2s;
		font-size: 1rem;
		color: rgb(148, 210, 189);
		font-weight: 700;
	}
/* reset input */
.form__field:required, .form__field:invalid {
	box-shadow: none;
}

