

/* ==========================================================================
   Author's custom styles
   ========================================================================== */


html, body{
	position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.contenedor-principal{
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #0c1421;
	   margin: 0;
    padding: 0;
    overflow: auto;
}

a {
  color: #92badd;
  display:inline-block;
  text-decoration: none;
  font-weight: 400;
}

h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display:inline-block;
  margin: 40px 8px 10px 8px; 
  color: #cccccc;
}

.caja-left-login,
.caja-right-login{
  position: relative;
  width: 50%;
  height: 100%;
  float: left;
}

.caja-left-login{
    width: 60%;
    background-image: url(../img/fondo-login.png);
    background-repeat: no-repeat;
    background-size: cover;
}


.caja-left-login .caja-color{
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #000000ba;
}

.caja-left-login .caja-logo-sisco{
    position: absolute;
    width: 300px;
    height: 200px;
    right: 20px;
    top: 50%;
    transform: translate(0, calc(-50% - 30px));
    background-image: url(../img/sisco_logo.png);
    background-size: 100% auto;
}

.caja-right-login{
  width: 40%;
  background-color: white;
  overflow: hidden;
}

.caja-right-login .caja-login{
    position: absolute;
    width: 400px;
    height: 308px;
    top: 50%;
    transform: translate(0, -50%);
    padding: 20px;
}


.caja-right-login .caja-login h3{
  font-size: 45px;
  color: #d4d4d4;
}

.caja-right-login .caja-login input{
    display: block;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    margin-bottom: 20px;
    font-size: 18px;
}


.caja-right-login .caja-login .btn-ingresar{
  display: block;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    background-color: initial;
    border: 3px solid #2e91c7;
    color: #2e91c7;
    line-height: 46px;
    transition: all 200ms;
}

.caja-right-login .caja-login .btn-ingresar:hover{
    background-color: #2e8bc7;
    color: #fff;
    border-color: #2e8bc7;
}

.caja-right-login .caja-login .btn-ingresar:active{
    background-color: #5cafe4;
    color: #fff;
    border-color: #5cafe4;
}


/*
 * estilos para toast de Cf
*/

.cf_toaster {
	position: absolute;
	overflow: visible;
	z-index: 999999;
	left: 50%;
}

.cf_toaster .background {
	position: absolute;
	overflow: hidden;
	width: 100%;
	height: 100%;
	z-index: 0;
	-moz-border-radius: 2px;
	border-radius: 2px;
	filter:alpha(opacity=95);
	opacity:0.95;
	-moz-box-shadow: 0px 0px 10px #1a1a1a;
	-webkit-box-shadow: 0px 0px 10px #1a1a1a;
	box-shadow: 0px 0px 10px #1a1a1a;
}

.cf_toaster .content {
	position: relative;
	overflow: hidden;
	z-index: 1;
	text-align: center;
	font-size: 15px;
	font-weight: normal;
	line-height: 20px;
	padding: 10px;
	text-shadow: none;
}


/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after{
  width: 100%;
}

.loader-form{
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    background-image: url(../img/ajax-loader.gif);
    background-repeat: no-repeat;
    background-position: 50%;
    z-index: 1;
}

.contenedor-principal .caja-mensaje{
    position: absolute;
    width: 300px;
    top: 50%;
    left: 50%;
    padding: 10px 20px;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.contenedor-principal .caja-mensaje .top-caja{
  padding: 20px 0;
  padding-top: 90px;
  background-image: url(../img/check.png);
  background-repeat: no-repeat;
  background-size: 50px;
  background-position: 50% 20px;
  border-bottom: 2px solid white;
}

.contenedor-principal .caja-mensaje .bottom-caja{
  padding-top: 20px;
}


/* OTHERS */

*:focus {
    outline: none;
} 

#icon {
  width:60%;
}

@media (max-width: 600px) {

	.wrapper{
		padding: 0;
	}
	#formContent{
		width: 100%;
		border-radius: 0;
		box-shadow: initial;
	}
}

@media (max-width: 1024px) {


  .caja-left-login{
    width: 40%;
  }

  .caja-right-login{
    width: 60%;
  }

}

@media (max-width: 768px) {

  .caja-left-login{
    width: 100%;
    position: relative;
    height: 250px;
    float: none;
  }

  .caja-left-login .caja-logo-sisco{
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }

  .caja-right-login{
    position: relative;
    background-color: initial;
    width: 100%;
    height: auto;
    margin: 0 auto;
    float: none;
  }

  .caja-right-login .caja-login {
    position: relative;
    background-color: initial;
    width: 100%;
    height: auto;
    margin: 0 auto;
    float: none;
    transform: translate(0, 0);
    top: 0;
  }

  .caja-right-login .caja-login h3{
    text-align: center;
  }

}