@charset "utf-8";
/* 
 * CSS Document 
 */
@import url("root.css");

body {
	font-family: var(--font-poppins);
	font-size: 13px;
	font-weight: 300;
	color: var(--color-text);
	background-color: var(--color-bg);
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

#login-main {
	width: 100vw;
	height: 100vh;
	display: grid;
	grid-template-columns: 0.9fr 1fr;
	overflow: hidden;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.login-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.login-form .content {
	width: 100%;
	max-width: 540px;
	padding: 0 15px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.login-title {
	font-family: var(--font-poppins);
	font-size: 28px;
	font-weight: 600;
	color: var(--color-dark-blue);
	padding: 10px 0 26px 0;
}

.input-div {
	margin-bottom: 28px;
}

.input-div label {
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	display: block;
	margin-bottom: -1px;
}

.input-div input {
	width: 100%;
	max-width: 100%;
	height: 48px;
	font-family: var(--font-poppins);
	font-size: 16px;
	font-weight: 600;
	color: var(--color-text);
	background-color: transparent;
	border: 1px solid #dfe4ea;
	padding: 6px 12px;
	border-radius: var(--border-radius);
	display: inline-block;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	transition: all 0.65s ease 0s;
}

.input-div input:focus {
	border: 1px solid var(--color-text);
	outline: none;
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
}

.input-div input.icon {
	text-indent: 32px;
}

.input-div .input-icon {
	font-size: 28px;
	width: 45px;
	text-align: center;
	margin-right: -50px;
	color: var(--color-text);
	display: inline-block;
	vertical-align: -7px;
}

.button-div {
	margin-top: 28px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.button-div button {
	width: 100%;
	height: 42px;
	line-height: 40px;
	font-family: var(--font-poppins);
	font-size: 16px;
	font-weight: 600;
	border: none;
	display: inline-block;
	color: #FFFFFF;
	border-radius: var(--border-radius);
	border-bottom: 3px solid rgba(0, 0, 0, 0.1);
	background-color: var(--color-blue);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	transition: all 0.3s ease-in;
}

.button-div button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.button-div button:hover {
	cursor: pointer;
	-webkit-box-shadow: inset 10px -40px 10px rgba(0, 0, 0, 0.1);
	box-shadow: inset 10px -40px 10px rgba(0, 0, 0, 0.1);
}

.login-form-reset {
	text-align: right;
	padding: 0 6px;
}

.login-form-reset span {
	font-size: 14px;
	font-weight: 600;
	color: var(--color-dark-blue);
	transition: all 0.65s ease 0s;
}

.login-form-reset span:hover {
	cursor: pointer;
	color: var(--color-text);
}

.login-register {
	font-size: 15px;
	text-align: left;
	color: #1FB6FF;
	padding: 0 6px;
	padding-top: 28px;
	padding-bottom: 20px;
}

.login-register span {
	font-weight: 600;
	text-decoration: underline;
	transition: all 0.65s ease 0s;
}

.login-register span:hover {
	cursor: pointer;
	color: var(--color-text);
}

.login-poster {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 40px;
	background-color: var(--color-blue);
	background-image: url('../img/background-login.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}

.slider-top {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.slider-icon i {
	font-size: 60px;
	color: #FFFFFF;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.slider-title {
	font-family: var(--font-lato);
	font-weight: 900;
	font-style: italic;
	font-size: 28px;
	color: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
	min-height: 40px;
	line-height: 40px;
	margin: 10px 0 30px 0;
}

.slider-title b {
	font-size: 32px;
	color: rgba(255, 255, 255, 1);
}

.slider-text {
	width: 80%;
	margin: 0 auto;
	font-family: var(--font-lato);
	font-weight: 600;
	font-style: italic;
	font-size: 18px;
	color: #FFFFFF;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
	text-align: center;
}

.login-points {
	width: 100%;
	margin: 45px auto 0 auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 6px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.login-points>div {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	transition: all 1s ease 0s;
}

.login-points>div:hover:not(.active) {
	background-color: #FFF !important;
}

.login-points>div.active {
	background-color: #FFF !important;
}

.login-points>div:not(.active) {
	cursor: pointer;
}

#login-form-enter {
	height: 540px !important;
}

#login-form-reset {
	height: 540px !important;
	display: none;
}

#login-form-reset .form-reset-icon-close {
	text-align: right;
	font-size: 24px;
	color: var(--color-message);
	transition: all 0.65s ease 0s;
}

#login-form-reset .form-reset-icon-close:hover {
	cursor: pointer;
	color: var(--color-dark-blue);
}

#login-form-reset p {
	font-family: var(--font-montserrat);
	color: var(--color-text);
	font-size: 16px;
	font-weight: 400;
	font-style: italic;
	text-align: justify;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.85);
	margin: 0 0 28px 0;
}

#div-message,
#div-reset-message {
	display: none;
}

.div-message {
	width: auto;
	display: grid;
	grid-template-columns: auto 1fr;
	min-height: 40px;
	padding: 0;
	margin-top: 20px;
	text-align: center;
	position: relative;
	font-family: var(--font-poppins);
	border-radius: 3px 3px 0 0;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	background-color: #F6F6F6;
	color: var(--color-text);
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.85);
	transition: all 0.35s ease 0s;
}

.div-message .message {
	padding-right: 20px;
}

.div-message>div {
	display: flex;
	align-items: center;
	justify-content: center;
}

.div-message i {
	font-size: 38px;
	margin-right: 12px;
	color: #FFFFFF;
	display: block;
	padding: 12px;
	text-shadow: 1px 1px 0 rgba(128, 128, 128, 0.2);
	border-radius: 3px 0 0 0;
	box-shadow: inset 0 0 10px rgba(128, 128, 128, 0.2);
}

.div-message.success i {
	background-color: #2ecc71;
}

.div-message.error i {
	background-color: #e74c3c;
}

.div-message .main-load {
	grid-column-start: 1;
	grid-column-end: 3;
	width: auto;
	height: 2px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.div-message .main-load .load {
	width: 0;
	height: 2px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	animation: load 8s linear forwards;
	-webkit-animation: load 8s linear forwards;
	-moz-animation: load 8s linear forwards;
}

.div-message.success .load {
	background-color: #2ecc71;
}

.div-message.error .load {
	background-color: #e74c3c;
}

@keyframes load {
	0% {
		width: 0;
	}

	50% {
		width: 60%;
	}

	100% {
		width: 100%;
	}
}

@-webkit-keyframes load {
	0% {
		width: 0;
	}

	50% {
		width: 60%;
	}

	100% {
		width: 100%;
	}
}

@-moz-keyframes load {
	0% {
		width: 0;
	}

	50% {
		width: 60%;
	}

	100% {
		width: 100%;
	}
}

@keyframes pulse {
	0% {
		transform: scale(1.0);
	}

	50% {
		transform: scale(1.08);
	}

	100% {
		transform: scale(1.0);
	}
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(1.0);
	}

	50% {
		-webkit-transform: scale(1.08);
	}

	100% {
		-webkit-transform: scale(1.0);
	}
}

@-moz-keyframes pulse {
	0% {
		-moz-transform: scale(1.0);
	}

	50% {
		-moz-transform: scale(1.08);
	}

	100% {
		-moz-transform: scale(1.0);
	}
}

.login-logo {
	margin-top: -40px;
	margin-bottom: 120px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 2px;
}

.login-logo-name {
	font-family: var(--font-bangers);
	font-size: 92px;
	text-transform: uppercase;
	text-decoration: none;
	color: #FFFFFF;
	text-shadow: 4px 3px 0 rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 2;
}

.login-logo-name small {
	font-size: 86px;
}

.login-logo-description {
	margin: 0 auto;
	font-family: var(--font-lato);
	font-weight: 600;
	font-style: italic;
	font-size: 16px;
	color: #FFFFFF;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
	text-align: center;
	text-transform: uppercase;
	margin-top: -10px;
	padding-left: 8px;
}

.login-logo-icon i {
	font-size: 115px;
	color: #FFFFFF;
	text-shadow: -2px 3px 0 rgba(0, 0, 0, 0.1);
	margin-top: 15px;
	margin-right: -8px;
	position: relative;
	z-index: 1;
	transform: rotate(-90deg);
}

input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
	box-shadow: 0 0 0px 1000px transparent inset !important;
	background-color: transparent !important;
	color: #000 !important;
}

/* For Desktop View */
@media screen and (max-width: 1280px) {
	.login-form .content {
		width: 70%;
	}
}

/* For Tablet View */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {}

/* For Mobile Portrait View */
@media screen and (max-device-width: 480px) and (orientation: portrait) {}

/* For Mobile Landscape View */
@media screen and (max-device-width: 640px) and (orientation: landscape) {
	#login-main {
		grid-template-columns: 1fr;
	}

	.login-poster {
		display: none;
	}
}

/* For Mobile Phones Portrait or Landscape View */
@media screen and (max-device-width: 640px) {
	#login-main {
		grid-template-columns: 1fr;
	}

	.login-poster {
		display: none;
	}
}