/**, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-size: 50%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  html, body {
    font-size: 50%;
  }
}

svg {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  overflow: visible;
}

.svg-icon {
  cursor: pointer;
}
.svg-icon path {
  stroke: rgba(255, 255, 255, 0.9);
  fill: none;
  stroke-width: 1;
}

input, button {
  outline: none;
  border: none;
}

.cont {
  position: relative;
  height: 100%;
  background-image: url("../images/background_5.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  overflow: auto;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.demo {
  position: absolute;
  top: 2.5rem;
  left: 2%;
  /*margin-left: -15rem;*/
  /*margin-top: -26.5rem;*/
  /*width: 30rem;*/
  /*height: 32.5rem;*/                                                                                 /*
  overflow: hidden;
}
.demo a{
    color:#fff;
    text-decoration: none;
}
.demo a:hover{
    color:#fff;
    text-decoration: underline;
}
.login {
  position: relative;
  top: 15%;
  width: 30rem;
  height: 32.5rem;
  border-radius: 25px;
  background: -webkit-linear-gradient(top, #3c3c43 0%, rgba(0, 0, 0, 0.6) 100%);
  background: linear-gradient(to bottom, #3c3c43 0%, rgba(0, 0, 0, 0.6) 100%);
  /*background: -webkit-linear-gradient(top, rgba(146, 135, 187, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);*/
  /*background: linear-gradient(to bottom, rgba(146, 135, 187, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);*/                                                                                                 /*
  -webkit-transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
  transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
  transition: opacity 0.1s, transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
  transition: opacity 0.1s, transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25), -webkit-transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
  -webkit-transform: scale(1);
          transform: scale(1);
}
.login.inactive {
  opacity: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.login__logo {
  position: absolute;
  left: 0;
  width: 100%;
  height: 35%;
  background-image: url("../images/logo.png");
  background-size: 80px 90px;
  background-repeat: no-repeat;
  background-position: center;
}
.login__logotext {
  position: absolute;
  left: 0;
  top: 35%;
  width: 100%;
  height: 5%;
  text-align: center;
  cursor: default;
  font-size: 12px;
  font-weight: normal;
  color: #FFFFFF;
}
.login__form {
  position: absolute;
  left: 0;
  top: 40%;
  width: 100%;
  height: 40%;
  padding: 1.5rem 2.5rem;
  text-align: center;
}
.login__row {
  height: 5rem;
  padding-top: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.login__icon {
  margin-bottom: -0.4rem;
  margin-right: 0.5rem;
}
.login__icon.name path {
  stroke-dasharray: 73.50196075439453;
  stroke-dashoffset: 73.50196075439453;
  -webkit-animation: animatePath 2s 0.5s forwards;
          animation: animatePath 2s 0.5s forwards;
}
.login__icon.pass path {
  stroke-dasharray: 92.10662841796875;
  stroke-dashoffset: 92.10662841796875;
  -webkit-animation: animatePath 2s 0.5s forwards;
          animation: animatePath 2s 0.5s forwards;
}
.login__input {
  display: inline-block;
  width: 22rem;
  height: 100%;
  padding-left: 1.5rem;
  font-size: 1.5rem;
  background: transparent;
  color: #FDFCFD;
}
.login__submit {
  position: relative;
  width: 100%;
  height: 4rem;
  margin: 2rem 0 2.2rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgb(0, 70, 170);
  font-size: 1.5rem;
  border-radius: 3rem;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
  transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
}
.login__submit:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -1.5rem;
  margin-top: -1.5rem;
  width: 3rem;
  height: 3rem;
  border: 2px dotted #fff;
  border-radius: 50%;
  border-left: none;
  border-bottom: none;
  -webkit-transition: opacity 0.1s 0.4s;
  transition: opacity 0.1s 0.4s;
  opacity: 0;
}


@-webkit-keyframes animRipple {
  to {
    -webkit-transform: scale(3.5);
            transform: scale(3.5);
    opacity: 0;
  }
}

@keyframes animRipple {
  to {
    -webkit-transform: scale(3.5);
            transform: scale(3.5);
    opacity: 0;
  }
}
@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes animatePath {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes animatePath {
  to {
    stroke-dashoffset: 0;
  }
}

/*Terms & Conditions*/    
                                                                                            /*
.footer{
    bottom: 30px;
    position: absolute;
    width: 90%;
    text-align: center;
    font-size: 16px;
    color: #fff;
    background: #0046aa;
    margin: auto;
    left: 0;
    right: 0;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    height: 30px;
    padding: 3px;
}
.footer a {
    color:#fff;
}
.footer a:hover{
    color:#61d0ec;
}
.footer span{
        text-shadow: 2px 2px 1px #000;
}*/

*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-size: 50%;
  height: 100%;
  overflow: hidden;
}
body{
    background-image: url("../images/back-main.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
@media (max-width: 768px) {
  html, body {
    font-size: 50%;
  }
}
#forma{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45%;
    background: #dfdfdf;
    height: auto;
    padding: 0 0 50px 0;
}
svg {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  overflow: visible;
}
.logo1{
    float: left;
    width: 50%;
    height: 100%;
}
.svg-icon {
  cursor: pointer;
}
.svg-icon path {
  stroke: rgb(31, 42, 94);
  fill: none;
  stroke-width: 1;
}

input, button {
  outline: none;
  border: none;
}

.login__icon {
  margin-bottom: -0.4rem;
  margin-right: 0.5rem;
}
.login__icon.name path {
  stroke-dasharray: 73.50196075439453;
  stroke-dashoffset: 73.50196075439453;
  -webkit-animation: animatePath 2s 0.5s forwards;
          animation: animatePath 2s 0.5s forwards;
}
.login__icon.pass path {
  stroke-dasharray: 92.10662841796875;
  stroke-dashoffset: 92.10662841796875;
  -webkit-animation: animatePath 2s 0.5s forwards;
          animation: animatePath 2s 0.5s forwards;
}
.login__input {
    display: inline-block;
    width: 70%;
    height: auto;
    padding: 8px 15px;
    font-size: 1.8rem;
    background: #fff0;
    color: #1f2a5e;
    letter-spacing: 1px;
    border-bottom: 1px solid #3d6691;
    margin-left: 10px;
}
.login__submit {
  position: relative;
  width: 30%;
  height: 5rem;
  margin: 0 9.5rem 2.2rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgb(0, 70, 170);
  font-size: 1.8rem;
  border-radius: 3rem;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
  transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
  letter-spacing:1px;
}
.login__submit:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -1.5rem;
  margin-top: -1.5rem;
  width: 3rem;
  height: 3rem;
  border: 2px dotted #fff;
  border-radius: 50%;
  border-left: none;
  border-bottom: none;
  -webkit-transition: opacity 0.1s 0.4s;
  transition: opacity 0.1s 0.4s;
  opacity: 0;
}
.login__logo {
  text-align: center;   
  margin: 5px 0;        
}
.login__logo img{
    width: 75%;
    height:auto;
}
.login__logotext {
  width: auto;
  text-align: center;
  cursor: default;
  font-size: 14px;
  font-weight: normal;
  color: #FFFFFF;
}
.login__logotext a:hover, .login__logotext a:focus, .login__logotext a:active, .login__logotext a:visited{
   color:#fff; 
}
.login_form{
    width: 100%;
    /*position: absolute;
    text-align: center; */   
    padding: 0 0 15px 0; 
    text-align: center;
    float: right;
}
.login_form h1{
    color: #fff;
    text-align: left;
    font-size: 40px;
    padding: 10px 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.login_form img{
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    margin-bottom: 5px;
    padding: 10px;
}
.login__row {
  margin-bottom: 30px;
}
.login__oficinas a{
    color: #1f2a5e;
    padding: 2% 0;
    font-size: 14px;
    background: #dfdfdf;
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center;
    border-top: 1px solid #afb3c6;
}
.login__oficinas a:focus{
    color: #1f2a5e;    
}
.login__oficinas1, .login__oficinas2{
    width: 50%;
    float: left;  
}
.login__oficinas ul{
    padding-left: 25px;
}
@-webkit-keyframes animRipple {
  to {
    -webkit-transform: scale(3.5);
            transform: scale(3.5);
    opacity: 0;
  }
}

@keyframes animRipple {
  to {
    -webkit-transform: scale(3.5);
            transform: scale(3.5);
    opacity: 0;
  }
}
@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes animatePath {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes animatePath {
  to {
    stroke-dashoffset: 0;
  }
}

/*Terms & Conditions*/
.footer{
    bottom: 0;
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #000;
    background: #92aace;
    margin: auto;
    left: 0;
    right: 0;          
    height: 30px;
    padding: 10px;
}

.footer a {
    color:#0046aa;
}
.footer a:hover{
    color:#0d0e66;
}
.footer span{
}
@media screen and (min-width:755px) and (max-width:1055px){
    #forma{
        width:70%;
    }   
}
@media screen and (max-width:754px){
    .logo1, .login_form{
        float:none;
        width: 100%;
        height: auto;
        left: 0;
        text-align: center;
        padding:30px 0;
    } 
    #forma{
      width:85%;
      top: 45%;
    }
    .login__logo img {
      width: 30%;
    }
    .login_form h1{
        text-align: center;
    }
    .login__oficinas{
        font-size: 9px;    
    }
    .footer{
        font-size: 10px;
    }
    .login_form img{
        width: 95%;
    }
}
@media screen and (max-width:500px){
    .login__logo img {
      width: 60%!important;
    }
    .logo1, .login_form{
        padding: 5px 0!important;    
    }
}
@media screen and (min-width:1500px){
    .login__logo img {
      width: auto!important;
    }
}