/** ZEUS GESTÃO - LOGIN CSS **/
html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 14px;
}

body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	background: url("../imgs/default_login_bg.webp") no-repeat center center;
	background-size: cover;
}

/** BOX LOGIN **/
#z_login {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: 350px;
	width: 90%;
	padding: 30px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	margin: auto;
}

#z_login_logo {
	text-align: center;
	margin-bottom: 20px;
}

#z_login_logo span {
	padding: 15px;
	border-radius: 20px;
	display: inline-block;
}

#z_login_form {
	width: 100%;
}

.z-login-form-row {
	position: relative;
	margin-bottom: 20px;
}

/** INPUTS E LABELS FLUTUANTES **/
#z_login_form .input-group-text {
	background: transparent;
	border: none;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	color: #666;
}

#z_login_form .form-control {
	border-radius: 8px;
	padding: 12px 40px 12px 12px;
}

/** CHECKBOX / SWITCH **/
.z-switch {
	position: relative;
	display: inline-block;
	width: 44px;
	height: 22px;
}

.z-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.z-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: .4s;
	border-radius: 22px;
}

.z-slider:before {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
}

.z-switch input:checked+.z-slider {
	background-color: #0d6efd;
}

.z-switch input:checked+.z-slider:before {
	transform: translateX(22px);
}

/** FOOTER LOGIN **/
#z_login_footer {
	width: 100%;
	padding: 15px;
	background-color: #000;
	color: #fff;
	text-align: center;
	font-size: 11px;
}

/** RESPONSIVIDADE **/
@media (max-width: 480px) {
	#z_login {
		padding: 20px;
	}

	#z_login_logo img {
		max-width: 100px;
	}
}
