.loginBody{
	display: flex;
	justify-content: flex-end;
	margin: 0;
	padding: 0;
	background: #fff;
	color: #fff;
	font-family: Arial;
	font-size: 12px;	
	background-image: url("../res/login.webp");
	width: 100%;
	height: 100%;
	position: relative;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	z-index: 1;
}

.logo-login {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    align-self: flex-start;
}

.logo-login img {
    width: 100%;
    max-width: 300px; /* Adjust max-width as needed */
}

.logo2-login {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    align-self: flex-end;
}

.logo2-login img {
    width: 100%;
    max-width: 300px; /* Adjust max-width as needed */
}

.header {
	color: #000;
	font-family: 'Exo', sans-serif;
	font-size: 35px;
	font-weight: 500;
	/*background: #eee;*/
	border-radius: 4px;
	padding: 5px;
}

.header span{
	color: #5379fa !important;
}

.login{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    z-index: 3;
    flex-grow: 1;
    justify-content: center;    
}

.login-container{
	width: 400px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
    position: relative;
	background-color: white;
	top: 0;
	right: 0;
	overflow: auto;
	text-align: center;
	padding: 20px;
	z-index: 2;
	border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login input[type=text]{
	width: 250px;
	height: 30px;
	background: transparent;
	border: 1px solid rgba(0,0,0,0.6);
	border-radius: 2px;
	color: #000;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
	margin-top: 30px;
}

.login input[type=password]{
	width: 250px;
	height: 30px;
	background: transparent;
	border: 1px solid rgba(0,0,0,0.6);
	border-radius: 2px;
	color: #000;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
	margin-top: 10px;
}

.login input[type=button]{
	width: 250px;
	height: 35px;
	background: #000;
	border: 1px solid #000;
	cursor: pointer;
	border-radius: 2px;
	color: #a18d6c;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 6px;
	margin-top: 10px;
}

.login input[type=submit]{
	width: 250px;
	height: 35px;
	background: #eee;
	border: 1px solid #000;
	cursor: pointer;
	border-radius: 2px;
	color: #a18d6c;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 6px;
	margin-top: 10px;
}

.login input[type=button]:hover{
	opacity: 0.8;
}

.login input[type=submit]:hover{
	opacity: 0.8;
}


.login input[type=button]:active{
	opacity: 0.6;
}

.login input[type=submit]:active{
	opacity: 0.6;
}

.login input[type=text]:focus{
	outline: none;
	border: 1px solid rgba(0,0,0,0.9);
}

.login input[type=password]:focus{
	outline: none;
	border: 1px solid rgba(0,0,0,0.9);
}

.login input[type=button]:focus{
	outline: none;
}

.login input[type=submit]:focus{
	outline: none;
}

::-webkit-input-placeholder{
   color: rgba(0,0,0,0.6);
}

::-moz-input-placeholder{
   color: rgba(0,0,0,0.6);
}

.errorlogin {
	color: red;
	font-size: 14px;
	Font-weight: bold;
	padding-top: 30px;
}