#wondow_log {
	background-image: url("../images/Depositphotos_147061631_xl-2015-1920x790.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 100vh;
}

.modal-loading {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255, 0.8);
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99;
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
	border-radius: 15px;
}

	.modal-loading.open {
		opacity: 1;
		visibility: visible;
	}
	.modal-loading .maskedCircle {
		width: 20px;
		height: 20px;
		border-radius: 12px;
		border: 3px solid #e77e1f;
	}

/* Spinning circle mask */
	.modal-loading .mask {
		width: 12px;
		height: 12px;
		overflow: hidden;
	}

/* Spinner */
	.modal-loading .spinner {
		
		left: 1px;
		top: 1px;
		width: 26px;
		height: 26px;
		animation: spin 1s infinite linear;
	}
@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.error-text {
	text-align: center;
	color: #dc3545;
	font-weight: 600;
}

.windowLogin {
	position: absolute;
	z-index: 2;
	width: 35%;
	height: 75%;
	background-color: rgba(255, 255, 255, 0.7);
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	border-radius: 15px;
	margin: auto;
}

.contentLogin {
	margin-top: 15vh;
}

.loginLogo {
	width: 75%;
}

.login-langs {
	width: 25%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

	.login-langs > li > .lang-link {
		color: #000;
	}
		.login-langs > li > .lang-link.active {
			color: #e77e1f;
			text-decoration:underline;
		}

		.login-langs > li > .lang-link:hover {
			color: #e77e1f
		}

/* .login_group {
	width: 50%;
	margin-top: 15px;
}

	.login_group label {
		margin-left: 5px;
		font-weight: 600;
	}

	.login_group .form-control {
		outline: none;
		border: 2px solid #e77e1f;
	}

		.login_group .form-control:focus {
			outline: none;
			box-shadow: none;
		}

	.login_group .login_btn {
		background-color: #e77e1f;
		color: #fff;
		width: 100%;
		margin-top: 20px;
	} */

/* new login css */

.login_section .animated_background {
    animation: background_gradient infinite 7s ease-in-out;
}

.login_section .animated_background .circle:nth-child(1) {
    animation: login_circle_1 infinite 30s linear;
    width: 700px;
    height: 700px;
}

.login_section .animated_background .circle:nth-child(2) {
    background: radial-gradient(50% 50% at 50% 50%, #FFB2C2 0%, #FFFAFA 100%),
                radial-gradient(102.08% 102.08% at 6.77% 106.6%, #FFA0B4 0%, rgba(255, 255, 255, 0.2) 100%);
    animation: login_circle_2 infinite 30s linear;
    width: 400px;
    height: 400px;
    opacity: 0.6;
}

@keyframes login_circle_1 {
	0% {
		top: 120%;
        left: -20%;
        transform: scale(1);
	}
	100% {
		top: -100%;
        left: -40%;
        transform: scale(1.5);
	}
}

@keyframes login_circle_2 {
	0% {
		top: -60%;
        left: 30%;
        transform: scale(1);
	}
	100% {
		top: 100%;
        left: 120%;
        transform: scale(1.5);
	}
}

.login_section .logo {
    position: absolute;
    top: 32px;
    left: 32px;
    z-index: 100;
}

.login_lang_container {
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 100;
}

.login_lang_container .dropdown_lang_btn {
	background: #FFF;
}

.login_container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 72px 96px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login_container > form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.login_container > form h3 {
    padding-bottom: 12px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin: 0;
}

.login_container > form input {
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    color: #757575;
    font-size: 14px;
    padding: 16px 14px;
    width: 288px;
    height: 52px;
    outline: none;
}

.login_container > form input:hover {
    border: 1px solid #000;
    cursor: pointer;
}

.login_container > form input:focus {
    border: 2px solid #E77A7A;
}

.login_container > form input[type="checkbox"] {
	width: 16px;
	height: 16px;
}

.login_container > form .checkbox_label {
	display: flex;
	gap: 8px;
	font-size: 11px;
	line-height: 14px;
	width: 288px;
	font-weight: 400;
	margin: 0;
}

.login_container > form .checkbox_label p {
	margin: 0;
}

.login_container > form .checkbox_label p a {
	color: blue;
	text-decoration: underline;
}

.login_container > form .checkbox_label p a :visited {
	color: purple;
	text-decoration: underline;
}

.login_container > form .btn {
    width: 100%;
    margin-top: 24px;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.home_link {
    align-items: center;
}

.home_link .form_logo {
    margin-bottom: 40px;
}

.home_link .btn {
    margin: 0 auto;
    display: block;
    width: max-content;
    height: 34px;
    line-height: 15px;
}

.login_modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    height: max-content;
    border-radius: 12px;
    background: #FFF;
    border: 1px solid #E9E9E9;
    padding: 24px;
    z-index: 100000;
}

.login_modal_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
}

.login_modal p {
    font-size: 12px;
    margin-bottom: 32px;
}

.login_modal_footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.login_modal_footer .btn_transparent {
    width: max-content;
}

.btn:disabled {
    background: #D9D9D9;
    color: black;
    opacity: 1;
}

.btn:disabled:hover {
    box-shadow: none;
    cursor: default;
}

@media screen and (max-width: 1440px) {
	/* body {
    background-size: 120%;
    background-position-x: center;
  } */
	.windowLogin {
		width: 40%;
		height: 70%;
	}

	.contentLogin {
		margin-top: 10vh;
	}
}

@media screen and (max-width: 1366px) {
	/* body {
    background-size: cover;
    background-position-x: center;
  } */
	.windowLogin {
		width: 35%;
		height: 75%;
	}

	.contentLogin {
		margin-top: 8vh;
	}
}

@media screen and (max-width: 1024px) {
	/* body {
    background-size: 130%;
    background-position-x: center;
  } */
	.windowLogin {
		width: 40%;
		height: 75%;
	}

	.contentLogin {
		margin-top: 8vh;
	}
}

@media screen and (max-width: 768px) {
	/* body {
    background-size: 240%;
    background-position-x: center;
  } */
	.windowLogin {
		width: 60%;
		height: 55%;
	}

	.contentLogin {
		margin-top: 8vh;
	}
}

@media screen and (max-width: 540px) {
	.login_section .logo {
        top: 16px;
        left: 50%;
        transform: translate(-50%, 0);
        width: 106px;
    }
    
    .login_container {
        top: unset;
        left: 0;
        bottom: 0;
        transform: translate(0, 0);
        width: 100%;
        height: 90dvh;
        padding: 20px;
        border-radius: 12px;
        align-items: flex-start;
    }

    .login_container > form {
        align-items: flex-start;
        width: 100%;
    }

    .login_container > form h3 {
        font-size: 18px;
        padding-bottom: 8px;
        line-height: 21px;
    }

    .login_container > form input {
        width: 100%;
    }

    .login_container > form .btn {
        margin-top: 20px;
    }

    .login_section .btn {
        width: 288px;
    }
}

@media screen and (max-width: 425px) {
	/* body {
    background-size: 240%;
    background-position-x: center;
  } */
	.windowLogin {
		width: 70%;
		height: 75%;
	}

	.contentLogin {
		margin-top: 8vh;
	}
}

@media screen and (max-width: 375px) {
	/* body {
    background-size: 270%;
    background-position-x: center;
  } */
	.windowLogin {
		width: 80%;
		height: 75%;
	}

	.contentLogin {
		margin-top: 8vh;
	}
}

@media screen and (max-width: 320px) {
	/* body {
    background-size: 300%;
    background-position-x: center;
  } */
	.windowLogin {
		width: 80%;
		height: 75%;
	}

	.contentLogin {
		margin-top: 8vh;
	}
}
