﻿body {
	margin: 0;
	padding: 0;
	background-image: url("../images/login-background.jpeg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: fit-content;
}

@media only screen and (max-width: 767px) {
	
}

.main-section {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 80vh;
}

.login-section {
	min-width: 40vh;
	min-height: 20vh;
	padding: 10px;
}

.cmdlift-logo {
	width: 20vh;
	margin-bottom: 20px;
	position: absolute;
	top: 10px;
	right: 10px;
}

.input-container {
	position: relative;
	margin-bottom: 20px;
	width: contain;
}

.icon {
	position: absolute;
	transform: translateY(-50%);
	right: 10px;
	pointer-events: none;
	top: 50%;
}

.login-container {
	background-color: #acc8db;
	border-radius: 10px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.login-title {
	background-color: #4372c4;
	color: white;
	width: 100%;
	border-radius: 10px 10px 0 0;
	font-size: 18px;
	font-weight: bold;
	line-height: 5vh;
	text-align: center;
	position: relative;
	margin-bottom: 20px;
}

.login-form {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.login-btn {
	padding: 10px;
	background-color: #000;
	color: white;
	border: none;
	cursor: pointer;
	margin-bottom: 10px;
	border-radius: 10px;
	min-width: 10vh;
	margin-top: 20px;
	text-transform: uppercase;
}