.flex-flex {
    display: flex;
}
.contenedor__login__animado{
    position: relative;
    overflow: hidden;
    background: #fff;
    width: 100%;
    min-height: 100vh;
    height: auto;
    transition: all 0.9s ease;
}
.contenedor__login__animado__barras{
    line-height: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    height: auto;
    transition: all 0.9s ease;
}
.contenedor__login__animado__form{
    z-index: 11;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    width: 100%;
    /* position the text in t’ middle*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: all 0.9s ease;
}
.loginbackground-gridContainer {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: [start] 1fr [left-gutter] (50px)[16] [left-gutter] 1fr [end];
    grid-template-columns: [start] 1fr [left-gutter] repeat(16,50px) [left-gutter] 1fr [end];
    -ms-grid-rows: [top] 1fr [top-gutter] (50px)[12] [bottom-gutter] 1fr [bottom];
    grid-template-rows: [top] 1fr [top-gutter] repeat(12,50px) [bottom-gutter] 1fr [bottom];
    justify-content: center;
    transform: rotate(-13deg) skew(-13deg);
    width: 100%;
    transition: all 0.9s ease;
}
.animation__derecha__izquierda1 {
    animation: animationRightLeft 4s ease-in-out infinite;
}
.animation__derecha__izquierda2 {
    animation: animationRightLeft2 5s ease-in-out infinite;
}
.animation__derecha__izquierda3 {
    animation: animationRightLeft 7s ease-in-out infinite;
}
.animation__derecha__izquierda4 {
    animation: animationRightLeft2 8s ease-in-out infinite;
}

.animation__izquierda__derecha1 {
    animation: animationLeftRight2 4s ease-in-out infinite;
}
.animation__izquierda__derecha2 {
    animation: animationLeftRight 5s ease-in-out infinite;
}
.animation__izquierda__derecha3 {
    animation: animationLeftRight2 7s ease-in-out infinite;
}
.animation__izquierda__derecha4 {
    animation: animationLeftRight 8s ease-in-out infinite;
}

.box-background--grey {
    background-color: #A93226;
    opacity: .2;
}
.box-background--green {
    background-color: #24454a;/*5469d4*/
    opacity: .2;
}
.box-background--white {
    background-color: #E5AEAE;
    opacity: .2;
}
.box-background--blue {
    background-color: #154360;
    opacity: .2;
}
.box-background--orange {
    background-color: #111f2d;
    opacity: .2;
}
.box-background--cyan {
    background-color: #04776a;
    opacity: .2;
}

@keyframes animationLeftRight {
    0% {
        transform: translateX(1000px);
    }
    50% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(1000px);
    }
} 

@keyframes animationRightLeft {
    0% {
        transform: translateX(1000px);
    }
    50% {
        transform: translateX(-1000px);
    }
    100% {
        transform: translateX(1000px);
    }
} 

@keyframes animationLeftRight2 {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(1000px);
    }
    100% {
        transform: translateX(0px);
    }
} 

@keyframes animationRightLeft2 {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-1000px);
    }
    100% {
        transform: translateX(0px);
    }
} 
/*---------------------ETILOS LOGIN------------------*/
.contenedor__login{
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100vh;
    background: url(../imagenes/empresa/fondoAIFA.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    transition: all 0.9s ease;
}
.contenedor__login::before{
    content: '';
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    opacity: 0.5;
    top: 0;
    left: 0;
}
.contenedor__login__ingresar{
    position: relative;
    width: 100%;
    transition: all 0.9s ease;
}
.contenedor__login__punta{
    position: absolute;
    bottom: -1px;
    width: 100%;
    display: flex;
    transition: all 0.9s ease;
}
.contenedor__login__punta > div{
    flex: auto ;
    height: 50px;
    background: #f2f2f2;
    display: inline-block;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transition: all 0.9s ease;
}
.contenedor__login__ingresar .signupFrm {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.9s ease;
}
.contenedor__login__ingresar .form {
    background-color: rgba(255, 255, 255, .91);
    width: 430px;
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0 10px 75px rgba(92, 99, 105, .5);
    border: 2px solid #E6E6E6;
    user-select: none;
    transition: all 0.9s ease;
}
.contenedor__login__ingresar .title {
    font-size: 32px;
    margin-bottom: 40px;
    transition: all 0.9s ease;
    color: #111F2D;
}
.contenedor__login__ingresar .inputContainer {
    position: relative;
    height: 45px;
    width: 100%;
    margin-bottom: 19px;
    transition: all 0.9s ease;
}
.contenedor__login__ingresar .input {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    border-bottom: 1px solid #222;
    border-radius: 0px;
    font-size: 16px;
    padding: 0 10px;
    outline: none;
    background: none;
    z-index: 1;
    color: #222;
    transition: all 0.9s ease;
}
.contenedor__login__ingresar .label {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0 4px;
    background-color: none;
    color: #222;
    font-size: 16px;
    transition: all 0.9s ease;
    z-index: 0;
}
.contenedor__login__ingresar input::placeholder {
    visibility: hidden;
}
.contenedor__login__ingresar .submitBtn {
    background-color: rgb(17, 31, 47);
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, 
              rgba(0, 0, 0, 0) 0px 0px 0px 0px, 
              rgba(0, 0, 0, 0.12) 0px 1px 1px 0px, 
              rgb(84, 105, 212) 0px 0px 0px 1px, 
              rgba(0, 0, 0, 0) 0px 0px 0px 0px, 
              rgba(0, 0, 0, 0) 0px 0px 0px 0px, 
              rgba(60, 66, 87, 0.08) 0px 2px 5px 0px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    padding: 15px 30px;
    border-radius: 5px;
    transition: all 0.9s ease;
}
.contenedor__login__ingresar .submitBtn:hover {
    background-color: #555;
    transition: all 0.9s ease;
}
.contenedor__login__ingresar .input:focus + .label {
    top: -20px;
    left: -3px;
    z-index: 10;
    font-size: 15px;
    font-weight: bold;
    color: #222;
    background: none;
    transition: all 0.9s ease;
}
.contenedor__login__ingresar .input:not(:placeholder-shown)+ .label {
    top: -20px;
    left: -3px;
    z-index: 10;
    font-size: 15px;
    font-weight: bold;
    background: none;
    transition: all 0.9s ease;
}
.contenedor__login__ingresar .input:focus {
    border-bottom: 2px solid #111F2D;
    transition: all 0.9s ease;
}
/*--------------------------------formulario registro*/
/*Diseño de pedir una cotizacion*/
.contenedor-Registro{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    z-index: 0;
    height: auto;
    transition: all 0.9s ease;
    overflow: hidden;
    padding: 40px 10%;
    margin: 0 auto;
    position: relative;
    z-index: 0;

}
.contenedor-Registro::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: .5;
    top: 0;
    left: 0;
    background-image: url('../imagenes/empresa/fondoLogin4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(0deg);
}
.contenedor-Registro > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    transition: all 0.9s ease;
    height: 100%;
    position: relative;
}
.contenedor-Registro > div:nth-child(1){
    width: 40%;
}
.contenedor-Registro > div:nth-child(2){
    width: 60%;
    background-color: rgba(255, 255, 255, .94);
    border-radius: 15px;
    border: 2px solid lightslategray;
}
.numeracionRegistro{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
    width: 100%;
    transition: all 0.9s ease;
    user-select: none;
}
.numeracionRegistro img{
    width: 90px;
    transition: all 0.9s ease;
}
.numeracionRegistro > div{
    width: 60%;
    border-radius: 10px;
    background: #111F2D;
    padding: 10px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    transition: all 0.9s ease;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
}
.numeracionRegistro > div:hover{
    background: #5F9192;
}
.numeracionRegistro > div:nth-child(1){
    background: none;
    width: 100px;
}
.numeracionRegistro > div:nth-child(1):hover{
    background: none;
}
.numeroRegistro{
    display: none;
    justify-content: center;
    border-radius: 50%;
    background: white;
    width: 20px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.9s ease;
    color: #111F2D;
}
/*inputs*/
.contenedor-registrar{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 20px;
    width: 100%;
    justify-content: center;
    transition: all 0.9s ease;
}
.contenedor-registrar > div {
    background-color: transparent;
    margin: 10px;
    text-align: center;
    transition: all 0.9s ease;
    width: calc((100% - 30px));
    /*border: 1px solid darkred;*/
    padding: 10px;
    transition: all 0.9s ease;
}
.contenedor-inputs-divs-registrar{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    justify-content: space-evenly;
    transition: all 0.9s ease;
}
.contenedor-inputs-registrar{
    width: 45%;
    height: 50px;
    position: relative;
    overflow: hidden;
    margin: 5px;
    transition: all 0.9s ease;
}
.calse100{
    width: 94%;
}
.calse33{
    width: 29%;
}
.calseCupon{
    width: 45%;
}
.contenedor-inputs-registrar input, .contenedor-inputs-registrar select{
    width: 100%;
    height: 100%;
    background: none;
    color: #222;
    padding-top: 20px;
    border: none;
    outline: 0px;
    transition: all 0.9s ease;
    /*-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-transform: uppercase;*/
}
.contenedor-inputs-registrar input[type=number]::-webkit-inner-spin-button,
.contenedor-inputs-registrar input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.contenedor-inputs-registrar input[type=number] { -moz-appearance:textfield; }

.contenedor-inputs-registrar input[type=password],.contenedor-inputs-registrar input[type=email]{ 
    text-transform: none;
}
.contenedor-inputs-registrar input[type=file] + .lbl-nombre .text-nomb,
.contenedor-inputs-registrar input[type=file]:focus + .lbl-nombre .text-nomb,
.contenedor-inputs-registrar input[type=file]:valid + .lbl-nombre .text-nomb{
    transform: translateY(-190%);
    font-size: 11px;
    color: #111F2D;
}
.contenedor-inputs-registrar input[type=date] + .lbl-nombre .text-nomb{
    transform: translateY(-150%);
    font-size: 11px;
    color: #111F2D;
}
.contenedor-inputs-registrar input[type=date]:valid + .lbl-nombre:after{
    transform: translateX(0%);
}
.contenedor-inputs-registrar .lbl-nombre{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-bottom: 2px solid #c7c7c7;
}
.contenedor-inputs-registrar .lbl-nombre:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 100%;
    border-bottom: 3px solid #1E7A62;
    transform: translateX(-100%);
    transition: all 0.9s ease;
}
.text-nomb{
    position: absolute;
    bottom: 5px;
    left: 0;
    transition: all 0.9s ease;
    color: #222;
    /*font-weight: bolder;*/
    text-transform: uppercase;
    font-size: 12px;
}
.contenedor-inputs-registrar input:focus + .lbl-nombre .text-nomb,
.contenedor-inputs-registrar input:valid + .lbl-nombre .text-nomb,
.contenedor-inputs-registrar input:disabled + .lbl-nombre .text-nomb,
.contenedor-inputs-registrar .correoPer + .lbl-nombre .text-nomb{
    transform: translateY(-150%);
    font-size: 11px;
    color: #111F2D;
}
.contenedor-inputs-registrar input:focus + .lbl-nombre:after,
.contenedor-inputs-registrar input:valid + .lbl-nombre:after,
.contenedor-inputs-registrar input:disabled + .lbl-nombre:after,
.contenedor-inputs-registrar .correoPer + .lbl-nombre:after{
    transform: translateX(0%);
}
.contenedor-inputs-registrar select:focus + .lbl-nombre .text-nomb,
.contenedor-inputs-registrar select:valid + .lbl-nombre .text-nomb,
.contenedor-inputs-registrar select:disabled + .lbl-nombre .text-nomb{
    transform: translateY(-150%);
    font-size: 11px;
    color: #111F2D;
}
.contenedor-inputs-registrar select:focus + .lbl-nombre:after,
.contenedor-inputs-registrar select:valid + .lbl-nombre:after,
.contenedor-inputs-registrar select:disabled + .lbl-nombre:after{
    transform: translateX(0%);
}
.contenedor-btnCanje{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    width: 100%;
}
.btn-canje{
    border: 2px solid #222222;
    background: rgb(34, 34, 34);
    color: #E5E5E5;
    border-radius: 5px;
    padding: 10px 25px;
    text-transform: uppercase;
    font-weight: bold;
    user-select: none;
    cursor: pointer;
    transition: all 0.9s ease;
}
.btn-canje:hover{
    background: rgb(245, 245, 245);
    color: #222222;
    transition: all 0.9s ease;
}
.btn-ligas {
    color: #111F2D;
    margin: 5px 0;
    font-weight: bold;
    user-select: none;
    cursor: pointer;
    transition: all 0.9s ease;
}
.btn-ligas:hover {
    color: #c15251;
}




















@media screen and (max-width:1500px){
    .contenedor-Registro{
        width: 100%;
        padding: 10px;
    }
}
@media screen and (max-width:1300px){
    .contenedor__login__animado{
        min-height: 100vh;
    }
}
@media screen and (max-width:1000px){
    .contenedor__login__animado{
        min-height: 100vh;
    }
    .contenedor-Registro{
        flex-direction: column;
        transition: all 0.9s ease;
    }
    .contenedor-Registro > div:nth-child(1){
        width: 100%;
        transition: all 0.9s ease;
    }
    .contenedor-Registro > div:nth-child(2){
        width: 100%;
        transition: all 0.9s ease;
    }
    .numeracionRegistro img{
        height: 50px;
        width: auto;
        transition: all 0.9s ease;
    }
    .numeracionRegistro{
        padding: 5px;
        transition: all 0.9s ease;
    }
    .numeracionRegistro > div:nth-child(1){
        width: 20%;
        transition: all 0.9s ease;
    }
    .numeracionRegistro > div:nth-child(2){
        width: 80%;
        transition: all 0.9s ease;
    }
    .contenedor-registrar > div {
        margin: 10px 0;
        padding: 10px 0;
        transition: all 0.9s ease;
    }
    .contenedor-Registro{
        padding: 10px;
        transition: all 0.9s ease;
    }
    .contenedor-registrar > div {
        margin: 10px 0;
        padding: 10px 0;
        width: 100%;
        transition: all 0.9s ease;
    }
}
@media screen and (max-width:700px){
    .contenedor__login__animado{
        min-height: 100vh;
    }
    .contenedor-registrar > div {
        margin: 2px 0;
        padding: 2px 0;
        transition: all 0.9s ease;
    }
}









