body {
	margin: 0px;
	position: relative;
	background: #F6F6F6 url('/images/login-bg.png') center center/cover no-repeat;
	font-family: Roboto;
	color: #212121;
	font-size: 15px;
	line-height: 1.5em;
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 85%;
	margin-top: 5%;
}

.login-box {
	align-content: center;
	color: #FFFFFF;
	height: 100%;
	min-width: 350px;
	position: relative;
	width: 35%;
}

.login-back {
	position: absolute;
	height: 35px;
    left: 20px;
    top: 20px;
	width: 35px;
}

.side-box {
	border-radius: 16px;
	background: linear-gradient(334deg, #0000D4 -17.35%, #C4171B 100%);
	width: 35%;
	min-width: 350px;
	height: 100%;
	position: relative;
}

.side-box div {
	color: #FFF;
	font-family: Roboto;
	font-size: 55px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	padding: 40px;
}

.box {
	width: 30%;
	background-color: lightblue;
	text-align: center;
	padding: 20px;
}

h2 {
	padding: 5px;
	margin: 0px;
	margin-top: 10px;
	color: #C4171B;
	text-align: center;
	font-family: Roboto;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.pageTitle {
	transition: 2s;
}

.logoBox {
	text-align: center;
}

.logoBox img {
	height:50px;
}

.logoBox span {
	border-radius: 50%;
	padding: 10px;
	display: inline-block;
	/*background: #f5f5f5;
	border: 1px solid #e2e9e6;*/
	/* box-shadow: 0px 0px 10px 1px #e2e9e6; */
}

.userBox {
	text-align: center;
	overflow: auto;
	transition: 3s;
}

.userType {
	background-color: #C4171B;
	color: white;
	border: 0px;
	height: 40px;
	line-height:40px;
    width: 40%;
    margin: 2%;
	border-radius: 10px;
	display: inline-block;
	font-size: 16px;
	text-transform: uppercase;
	transition: 1s;
}

.userType:hover {
	letter-spacing: 1px;
}

.userType_admin {
	background-color: #C4171B;
	color: white;
	border: 0px;
	height: 40px;
	line-height:40px;
    width: 50%;
    margin: 2%;
	border-radius: 10px;
	display: inline-block;
	font-size: 16px;
	text-transform: uppercase;
	transition: 1s;
}

.userType_admin:hover {
	letter-spacing: 1px;
}

.login-input {
	position: relative;
	border-bottom: 1px solid #EEE;
	margin: auto;
	margin-top: 15px;
	width: 80%;
}

.login-checkbox {
	text-align: left;
    width: 80%;
    margin: auto;
    margin-top: 15px;
	font-size: 12px;
}

.loginField {
	background: transparent;
	color: #FFFFFF;
	font-size: 15px;
	border: 0;
	outline: 0;
    padding: 0px 40px;
	width: 100%;
	height: 40px;
}

.loginField::placeholder {
	color: #EEEEEE;
}

.loginField:focus {
	border-bottom: 2px solid #FFFFFF;
}

.bigMessage {
	width: 80%;
	margin: auto;
	text-align: center;
}

.message {
	font-size: 12px;
	width: 80%;
	margin: auto;
}

.login-button {
	border-radius: 14px;
	background: #C4171B;
	color: white;
	border: 0px;
	padding: 10px;
	width: 80%;
	transition: 1s;
}

.login-button:disabled {
	background: #C4171B77;
}

.login-button:hover {
	letter-spacing: 1px;
}

.login-link {
	text-decoration: none;
    color: #C4171B;
}

.success {
    margin: 10px 0px;
	display: inline-block;
	color:green;
    width: 80%;
}

.error {
    margin: 10px 0px;
    display: inline-block;
    color: #C4171B;
    width: 80%;
}

.uppercase {
	text-transform: uppercase;
}

.formFooter {
	text-align: center;
}

.clickable {
	cursor: pointer !important;
}

.visible {
	display: block !important;
}

.invisible {
	display: none !important;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/*
.emailIcon {
    background: url(/myicons/email.svg) 5px center no-repeat;
	background-size: 20px; 
}

.passIcon {
    background: url(/myicons/password.svg) 5px center no-repeat;
	background-size: 20px; 
}*/

.eyeIcon, .uneyeIcon, .emailIcon, .passIcon {
    background-size: 20px;
    position: absolute;
    width: 20px;
    height: 20px;
    right: 10px;
    bottom: 10px;
}

.eyeIcon {
	background: url(/myicons/eye.svg) center no-repeat;
}

.uneyeIcon {
	background: url(/myicons/uneye.svg) center no-repeat;
}

.emailIcon {
	background: url(/myicons/email.svg) center no-repeat;
	background-size: 20px;
    left: 10px;
}

.passIcon {
    background: url(/myicons/password.svg) center no-repeat;
	background-size: 20px; 
    left: 10px;
}

.userIcon {
    background: url(/myicons/user.svg) 10px center no-repeat;
	background-size: 20px; 
}

.forgetPassword {
	float: right;
	color: #C4171B;	
}

.changeUserType {
	position: absolute;
    bottom: 20px;
	left: 8%;
    text-align: center;
}

@media screen and (max-width: 480px){
	.side-box {
		display: none;
	}
}

input[type="checkbox"] {
	height: 20px;
	margin-left: 10px;
    width: 20px;
	vertical-align: middle;
}

input[type="checkbox"]:checked {
    accent-color: #C4171B;
}

input:-webkit-autofill, input:-webkit-autofill:focus {
	transition: background-color 0s 600000s, color 0s 600000s !important;
}



.login-page .language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.login-page .logoBox {
    position: relative;
}

/* Nizar styling */





.login-lang-selector {
    position: fixed;
    top: 20px;
    right: 40px;
    display: flex;
    align-items: center;
    z-index: 1000;
}

.login-lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
	padding: 0px 5px;
    border: 0px solid #e0e0e0;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s;
}

.login-lang-btn:hover {
    border-color: #c8102e;
}

.login-lang-btn img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}

.login-lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    min-width: 150px;
}

.login-lang-dropdown.show {
    display: block;
}

.login-lang-option {
    display: flex;
    align-items: center;
    /* gap: 8px; */
    padding: 0px 10px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.login-lang-option:hover {
    background-color: #f5f5f5;
}

.login-lang-option img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}

.login-lang-option span {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
}

@media (max-width: 768px) {
    .login-lang-selector {
        right: 20px;
    }
    
    .login-lang-btn {
        padding: 6px 10px;
    }
    
    .login-lang-btn img,
    .login-lang-option img {
        width: 20px;
        height: 14px;
    }
    
    .login-lang-option span {
        font-size: 13px;
    }
}


