*, body {
    margin: 0px;
    padding: 0px;
    font-family: Flaticon,Titillium-Regular,sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}


.h1, h1 {
    font-size: 2.5rem;
}

.h2 {
    font-size: 1.5em;
}

.h3 {
    font-size: 1.17em;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.container-1 {
    width: 85%;
    margin: 0 auto;
}

.container-2 {
    width: 75%;
    margin: 0 auto;
}

.container-3 {
    width: 70%;
    margin: 0 auto;
}

.space-top-1 {
    margin-top: 4px;
}

.space-top-2 {
    margin-top: 8px;
}

.space-top-3 {
    margin-top: 12px;
}

.space-top-4 {
    margin-top: 16px;
}

.text-white {
    color: #FFF
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

/* Header */

header {
    background-image: url("https://b2cstaticresources.blob.core.windows.net/test/planea/img/background_hero.jpg");
    background-repeat: no-repeat;
    background-size: cover; 
    overflow: auto;
    height: 100px;
    width: 100%;
    position: fixed;
    z-index: 1;
}

/* header img {
    width: 10px;
    height: 10px;
} */

.banner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.banner-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.banner-1 .enaire__logo {
    margin-left: 10%;
}

/* backgrounds */ 

.bg-white {
    background: none !important;
    background-image: none !important;
    background-color: #FFF !important;
}

.bg-img {
    background-image: -webkit-gradient(linear, right bottom, from(rgba(0, 34, 76, 0.9)), to(rgba(0, 159, 218, 0.8))), url(https://b2cstaticresources.blob.core.windows.net/test/planea/img/background.png);
    background-image: linear-gradient(to right bottom, rgba(0, 34, 76, 0.9), rgba(0, 159, 218, 0.8)), url(https://b2cstaticresources.blob.core.windows.net/test/planea/img/background.png);
    background-size: cover;
}

/* Main */

main {
    min-height: 60%;
    padding-top: 120px;
    padding-bottom: 10px;
}

.body {
    display: grid;

    grid-template-areas: "intro intro intro"
                         "login separator register";
    grid-template-rows: auto 1fr;
    grid-template-columns: auto 10% 1fr;
}

/* .body-white {
    background-color: #FFF;
} */

.introduction {
    grid-area: intro;
    margin: 50px 0px ;
}

.login {
    grid-area: login;
    padding-bottom: 200px;
    width: 600px;
}

.separator {
    grid-area: separator;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.vertical-line {
    border-right: 1px solid #009FDA;
    width: auto !important;
    height: 100%;
}

.horizontal-line {
    border-top: 1px solid #009FDA;
    width: 100%;
    height: auto !important;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.register {
    grid-area: register;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 200px;
}

.register > button {
    margin-top: 25px;
}

.btn-container {
    /* width: 100%; */
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

/* Main forgot password */

.spacing {
    padding: 240px 0px 180px 0px;
}

.spacing-texts > div {
    margin-bottom: 0.5rem;
}

.spacing-texts > div:last-child {
    margin-bottom: auto;
}

/* Login */

.intro {
    margin-bottom: 20px;
    width: 600px;
}

.login-footer {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.login-body {
    background-color: #FFF;
    width: 600px;
}

.login-form {
    margin: 4px 16px 4px 16px;
}

.login-form input {
    width: calc(100% - 50px);
    border: none;
    outline: none;
    padding: 5px 25px 0px 25px;
    margin-top: 20px;
}

.login-form .entry-item {
    margin-bottom: 8px;
}

.login-form .entry-item:last-child {
    margin-bottom: 0px;
}

#localAccountForm {
    max-width: 600px;
}

.entry {
    display: flex;
    flex-direction: column-reverse;
    align-content: space-between;
}

/* forgot password form*/

.attrEntry input {
    width: 100%;
    border: none;
    outline: none;
    padding: 5px 0px 0px 0px;
    margin-top: 20px;
}

.forgot-password-form {
    box-shadow: 9px 9px 8px -9px rgb(0 0 0 / 75%);
    border: 1px solid #ededed;
}

.forgot-password-form > div {
    width: 80%;
    margin: 0 auto;
    padding: 1rem 0px 2rem 0px;
    height: 100%;
}

.change-password-container {
    width: 50%;
    margin: 0 auto;
}

.change-password-form {
    box-shadow: 9px 9px 8px -9px rgb(0 0 0 / 75%);
    border: 1px solid #ededed;
}

.change-password-form > div {
    width: 80%;
    margin: 0 auto;
    padding: 1rem 0px 2rem 0px;
    height: 100%;
}

/* Floating Labels */
.fp_inputs_group {
    position: relative;
    display: block;
    margin-bottom: 25px !important;
}

.fp_inputs_group:focus-within {
    margin-bottom: 24px !important;
}

.fp_inputs_group input {
    border-bottom: 1px solid #ddd;
}

.fp_inputs_group:focus-within input, 
.fp_inputs_group input:not(:placeholder-shown) {
    border-bottom: 2px solid #009FDA;
}

.fp_inputs_group label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.825em;
    transition-duration: 300ms;
}

.floating-label-1 {
    transform: translate(25px, 25px);
}

.floating-label-2 {
    transform: translate(0px, 25px);
}

input::placeholder {
    opacity: 0;
}

.fp_inputs_group:focus-within > label,
.fp_inputs_group input:not(:placeholder-shown) + label {
    color: #009FDA;
    transform: translate(0) !important;
}

.highlightError + label,
.highlightError:not(:placeholder-shown) + label,
.invalid + label,
.invalid:not(:placeholder-shown) + label {
    color: #bf360c !important;

}

.highlightError, 
.highlightError:not(:placeholder-shown),
.invalid, 
.invalid:not(:placeholder-shown) {
    border-bottom: 2px solid #bf360c !important;
}

.error {
    color: #bf360c;
    margin-top: 8px;
}

.error.pageLevel, .verificationErrorText, .verificationSuccessText, .verificationInfoText {
    margin-bottom: 8px;
}

.fp_inputs_group input:disabled + label {
    color: #AAA !important;
}

.fp_inputs_group input:disabled {
    border-bottom: 1px solid #555 !important;
    opacity: 0.5;
}


/* Inputs icons */

.input_icon {
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 5px;
    background-repeat: no-repeat;
}

.show_password_actived {
    right: 2px;
    cursor: pointer;
    background-image: url("https://b2cstaticresources.blob.core.windows.net/test/planea/img/eye_open.png");
    background-size: cover;
}

.show_password_deactived {
    right: 2px;
    top: 25px;
    cursor: pointer;
    background-image: url("https://b2cstaticresources.blob.core.windows.net/test/planea/img/eye_lock.png");
    background-size: cover;
}

.user_icon {
    left: 2px;
    top: 25px;
    background-image: url("https://b2cstaticresources.blob.core.windows.net/test/planea/img/icon_user_login.png");
}

.lock_icon {
    left: 2px;
    top: 25px;
    background-image: url("https://b2cstaticresources.blob.core.windows.net/test/planea/img/icon_lock_pass.png");
}

/* Footer */

.section-footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2em 0 1em 0;
}

.section-footer {
    height: 310px;
    width: 100%;
    background-color: #333333;
}

.section-footer .logo {
    margin: 40px 0 30px 0;
    width: 195px;
}

.footer-head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.manual-usuario {
    color: #FFF;
    margin-left: 1rem;
}

.manual-usuario:hover {
    border-bottom: 1px solid #FFF;
}

.links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.copyright {
    color: #555;
}

.enlaces-footer a {
    color: #009fda;
    text-decoration: none;
}
  
.enlaces-footer a:hover {
    color: #00224C;
}

.info-footer .info {
    display: grid;
    grid-template-columns: 20% auto 20%;
    column-gap: 16px;
    align-items: center;
}

.info-footer .iconos-sociales {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.info-footer ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.info-footer li {
    margin-right: 10px;
}

.info-footer li:last-child {
    margin-right: 0px;
}

/* Images */

.logo-ministerio img {
    vertical-align: middle;
    width: calc(4217px / 17);
    height: calc(1070px / 17);
}

.enaire__logo img {
    height: 25px;
    width: 150px;
}

.social-nav__item {
    color: #fff;
    text-decoration: none;
    margin-right: .5em;
    height: 30px;
    width: 24px;
    display: inline-block;
    padding-top: 4px
}
 
footer a.social-nav__item:hover {
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.1);
}

.social-nav__image {
    display: inline-block;
    max-height: 20px;
    width: auto
}

.social-nav__image--large {
    display: inline-block;
    max-width: 40px;
    max-height: 37px
}  


header .social-nav__item:focus,
header .social-nav__item:hover {
    opacity: .5;
}

.register-button {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

/* Buttons */

.btn,
.btn:link,
.btn:visited {
  text-decoration: none;
  padding: 8px 25px;
  display: inline-block;
  position: relative;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  width: 160px;
  text-align: center;
}

.btn:disabled {
    color: rgba(0,0,0,.26);
    cursor: default;
}

.btn:disabled:hover {
    background-color: rgba(0,0,0,.26);
    box-shadow: none;
}

.btn--blue {
  background-color: #009FDA;
  color: #fff;
}

.btn--white {
  background: #009FDA;
  color: white;
}

.btn:hover {
  -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  color: #ffffff;
  background: #333333;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2)
}

.btn-normal {
    font-size: 1rem;
    width: auto;
    min-width: 64px;
}

.back_top {
    position: fixed;
    left: 90%;
    top: 50%;
    bottom: 50%;
    z-index: 1000;
    cursor: pointer;
    display: block;
}

.back_top img {
    vertical-align: middle;
    border-style: none;
    width: 50px;
}

.fp_buttons_group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.end_buttons {
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.end_buttons button {
    margin-bottom: 8px;
}

.end_buttons button:last-child {
    margin-bottom: 0px;
}

.verifying_buttons button {
    margin-right: 8px;
}

.verifying_buttons button:last-child {
    margin-right: 0px;
}

/* Alerts */

.alert {
    display: block;
    margin: 0 auto;
    padding: 8px;
    width: auto !important;
    height: auto;
    border: 2px solid #000;
    background-color: #FFF;
    border-radius: 5px;
}

.alert > div {
    font-size: 0.85rem !important;
}

.alert-danger {
    border-color: #bf360c;
    background-color: rgb(255, 210, 210);
}

.alert-info {
    border-color: #0c60bf;
    background-color: rgb(210, 210, 255);
}

.alert-warning {
    border-color: #fff3cd;
    background-color: #ffeeba;
}

.news {
    font-size: x-large;
}

.password-change-message {
    margin-bottom: 1rem; 
    width: 100%;
    font-size: 14px;
}

.password-change-message a {
    font-size: 14px;
}

/* Animations */

.bounce_up_animation {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@media (max-width: 1280px) {
    .body {
        grid-template-areas: "intro"
                         "register"
                         "login";
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }

    .separator { 
        display: none;
    }

    .login {
        padding-bottom: 50px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    #api {
        width: 600px;
    }

    .register {
        padding-bottom: 50px;
    }
}

@-webkit-keyframes bounceOutUp {
    20% {
      -webkit-transform: translate3d(0, -10px, 0);
      transform: translate3d(0, -10px, 0);
    }
  
    40%,
    45% {
      opacity: 1;
      -webkit-transform: translate3d(0, 20px, 0);
      transform: translate3d(0, 20px, 0);
    }
  
    to {
      opacity: 0;
      -webkit-transform: translate3d(0, -2000px, 0);
      transform: translate3d(0, -2000px, 0);
    }
}
  
@keyframes bounceOutUp {
    20% {
      -webkit-transform: translate3d(0, -10px, 0);
      transform: translate3d(0, -10px, 0);
    }
  
    40%,
    45% {
      opacity: 1;
      -webkit-transform: translate3d(0, 20px, 0);
      transform: translate3d(0, 20px, 0);
    }
  
    to {
      opacity: 0;
      -webkit-transform: translate3d(0, -2000px, 0);
      transform: translate3d(0, -2000px, 0);
    }
}
  
  
@keyframes bounceOutDown {
    20% {
      -webkit-transform: translate3d(0, 10px, 0);
      transform: translate3d(0, 10px, 0);
    }
  
    40%,
    45% {
      opacity: 1;
      -webkit-transform: translate3d(0, -20px, 0);
      transform: translate3d(0, -20px, 0);
    }
  
    to {
      opacity: 0;
      -webkit-transform: translate3d(0, 2000px, 0);
      transform: translate3d(0, 2000px, 0);
    }
}

@keyframes bounceInUp {
  
    from,
    60%,
    75%,
    90%,
    to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
  
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 3000px, 0);
      transform: translate3d(0, 3000px, 0);
    }
  
    60% {
      opacity: 1;
      -webkit-transform: translate3d(0, -20px, 0);
      transform: translate3d(0, -20px, 0);
    }
  
    75% {
      -webkit-transform: translate3d(0, 10px, 0);
      transform: translate3d(0, 10px, 0);
    }
  
    90% {
      -webkit-transform: translate3d(0, -5px, 0);
      transform: translate3d(0, -5px, 0);
    }
  
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
}
