/* app css stylesheet */

html, body {
	height: 100%;
}

.footer {
	z-index: -1;
	position:fixed;
	bottom:0;
	left:0;
}
.background_principal {
	background-color: rgba(214, 218, 252, 0.9);
    /*background-color: rgb(255, 255, 255);*/
	height: 100%;
}
.nav-logo {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1e293b;
    text-decoration: none;
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 3rem;
}
.img {
	width: 30%;
	height:auto;
}
.img-login {
    width: 420px;
    height:auto;
}
.text-center {
	text-align: center;
}
.login-html {
	width: 100%;
	height: 100%;
	position: absolute;
	padding: 0px 70px 50px 70px;
//background: rgba(40, 57, 101, .9);
}
.login-html .title {
	text-align: center;
	padding-top: 10%;
}
.login-html .sign-in-htm,
.login-html .sign-up-htm {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: absolute;
    width: 420px;
    text-align: center;
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all .4s linear;
	transition: all .4s linear;
}
.login-html .sign-in,
.login-html .sign-up,
.login-form .group .check {
	display: none;
}
.login-html .tab,
.login-form .group .label,
.login-form .group .button {
	text-transform: uppercase;
}
.login-html .tab {
	font-size: 22px;
	margin-right: 15px;
	padding-bottom: 5px;
	margin: 0 15px 10px 0;
	display: inline-block;
	border-bottom: 2px solid transparent;
}
.login-html .sign-in:checked + .tab,
.login-html .sign-up:checked + .tab {
	color: #fff;
	border-color: #1161ee;
}
.login-form {
    display: grid;
    place-items: center;
    height: 400px;
    padding-bottom: 80px;
	/*padding: 80px;*/
	/*position: relative;*/
	/*-webkit-perspective: 1000px;*/
	/*perspective: 1000px;*/
	/*-webkit-transform-style: preserve-3d;*/
	/*transform-style: preserve-3d;*/
}
.login-form .group {
	margin-bottom: 15px;
}
.login-form .group .label,
.login-form .group .input,
.login-form .group .button {
	width: 100%;
	color: #fff;
	display: block;
}
.mb-1, .my-1 {
    margin-bottom: .25rem !important;
}
.login-form .group .input,
.login-form .group .button {
	border: none;
	/*padding: 15px 20px;*/
    padding-top: 15px;
    padding-bottom: 15px;
	border-radius: 25px;
	background: rgba(255, 255, 255, .9);
}
.login-form .group input[data-type="password"] {
	text-security: circle;
	-webkit-text-security: circle;
}
.login-form .group .label {
	color: #fff8f9;
	font-size: 12px;
}
.login-form .group .button {
	background: #1161ee;
}
.login-form .group label .icon {
	width: 15px;
	height: 15px;
	border-radius: 2px;
	position: relative;
	display: inline-block;
	background: rgb(119, 171, 215);
}
.login-form .group label .icon:before,
.login-form .group label .icon:after {
	content: '';
	width: 10px;
	height: 2px;
	background: #fff;
	position: absolute;
	-webkit-transition: all .2s ease-in-out 0s;
	transition: all .2s ease-in-out 0s;
}
.login-form .group label .icon:before {
	left: 3px;
	width: 5px;
	bottom: 6px;
	-webkit-transform: scale(0) rotate(0);
	transform: scale(0) rotate(0);
}
.login-form .group label .icon:after {
	top: 6px;
	right: 0;
	-webkit-transform: scale(0) rotate(0);
	transform: scale(0) rotate(0);
}
.login-form .group .check:checked + label {
	color: #fff;
}
.login-form .group .check:checked + label .icon {
	background: #1161ee;
}
.login-form .group .check:checked + label .icon:before {
	-webkit-transform: scale(1) rotate(45deg);
	transform: scale(1) rotate(45deg);
}
.login-form .group .check:checked + label .icon:after {
	-webkit-transform: scale(1) rotate(-45deg);
	transform: scale(1) rotate(-45deg);
}
.login-html .sign-in:checked + .tab + .sign-up + .tab + .login-form .sign-in-htm {
	-webkit-transform: rotate(0);
	transform: rotate(0);
}
.login-html .sign-up:checked + .tab + .login-form .sign-up-htm {
	-webkit-transform: rotate(0);
	transform: rotate(0);
}
.foot-lnk {
	text-align: center;
}
.container-fluid {
	padding-right: 0px;
	padding-left: 0px;
}
.sign-in-htm{
    width: 95%;
    max-width: 420px;
    text-align: center;

}
.btn-color-base {
    background-image: linear-gradient(to bottom, #608aed, #6360c5) !important;
    text-color: #fff;
    /*background-color: #28a745 !important; !* Green background *!*/
    color: white !important;              /* White text */
    /*border-color: #28a745 !important;*/
}
.btn-color-base:hover {
    background-color: #6360c5 !important;
    border-color: #6360c5 !important;
}
.btn-color-logout {
    background-image: linear-gradient(to bottom, #121212, #777777) !important;
    text-color: #fff;
    /*background-color: #28a745 !important; !* Green background *!*/
    color: white !important;              /* White text */
    /*border-color: #28a745 !important;*/
}
.btn-color-logout:hover {
    background-color: #777777 !important;
    border-color: #777777 !important;
}

/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .slider {
	background-color: #0ef315;
}

input:focus + .slider {
	box-shadow: 0 0 1px #0ef315;
}

input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

.login-form .group {
	position: relative;
}

.show-password {
    position: absolute;
    top: 38px;
    right: 25px;
    cursor: pointer;
}

.show-password i {
    color: #555;
    font-size: 16px;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.popup-content p {
    margin-bottom: 20px;
}

.popup-content button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #1161ee;
    color: #fff;
    cursor: pointer;
}


