/*Estilos generales*/
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;

}
:root{
    --color-blanco: #ffff;
    --color-amarillo: #f8dac2;
    --color-melon: #f2a297;
    --color-rosa: #f4436f;
    --color-rojo: #ca1444;
    --color-negro: #142738;


}

*::selection{
    background: var(--color-negro);
    color: var(--color-blanco);

}
*::-moz-selection{
    background: var(--color-negro);
    color: var(--color-blanco);
    
}

body{
    background-color: var(--color-negro);
    color: var(--color-blanco);
}

.contenedor{
    max-width: 500px;
    width: 90%;
    margin: 40px auto;
}
/*estilos del logo*/
.logo{
    margin-bottom: 40px;
    width: 100%;
}
.logo img{
    width: 100%;
    vertical-align: top;
}

/*filas y columnas*/
.app .fila{
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}
.app .col{
    width: 50%;

}
/*acceder a estilos generales de input y botones*/
.app label{
    line-height: 40px;

}
.app input{
    text-align: center;
    border: none;
}
.app .btn{
    width: 100%;
    background: var(--color-rosa);
    color: var(--color-blanco);
    display: inline-block;
    height: 40px;
    vertical-align: top;
    font-size: 16px;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all .3s ease;

}
.app .btn:hover{
    background: var(--color-melon);
}
.app .btn.false{
    background: var(--color-rojo);

}
/*Fila Numero de caracteres*/
.app .numero-caracteres .botones div{
    width: 100%;


}
.app .numero-caracteres .botones div:nth-child(1) button{
    border-radius: 4px 0px 0px 4px;

}
.app .numero-caracteres input{
    height: 40px;
    width: 100%;
    cursor: default;
    background: var(--color-rojo);
    color: white;

}
.app .numero-caracteres .botones div:nth-child(3) button{
    border-radius: 0px 4px 4px 0px;

}
.app .numero-caracteres .botones{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
/*FILA GENERAR CONTRASEÑA*/
.app .fila.generar{
    margin-bottom: 10px;


}
.app .fila.generar .col:nth-child(1){
    width: 30%;

}
.app .fila.generar col:nth-child(2){
    width: 65%;
}
.app .fila.generar .btn-generar {
    width: 100%;
    height: 40px;
    font-size: 18px;
    padding: 0;
    line-height: 40px;
    position: relative;


}
.app .fila.generar .btn-generar i{
 margin-left: 20px;
 position: relative;
 top: -1px;
 font-size: 14px;


}
/*.app .fila.generar .btn-generar:after{
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: var(--color-rosa);
    transform: rotate(45deg);
    position: absolute;
    top: 13px;
    right: -7px;
    transition: all .3s ease;


}*/
.app .fila.generar .col:nth-child(1):hover .btn.btn-generar:after{
    background: var(--color-melon);
}
.app .fila.generar .input-password{
width: 100%;
background: none;
border-radius: 4px;
border: 1px solid rgba(255, 255, 255, .25);
color: #fff;
height: 40px;
line-height: 40px;
cursor: pointer;
transition: all .3s ease;
}

.app .fila.generar .input-password:hover{
    border: 1px solid rgba(255, 255, 255, .50); 

}
.app .fila.btn-generar input::selection{
    background: #212139;
}
.app .fila.btn-generar input::-moz-selection{
    background: #212139;
}

/*FILA ALERTA*/

.app .fila.alerta{
    justify-content: flex-end;
}
.app .fila.alerta .col{
    width: 65%;

}
.app .fila.alerta .alerta-copiado{
    text-align: center;
    color: rgba(255, 255, 255, 0);
    transition: all .3s ease;

}

.app .fila.alerta .alerta-copiado.active{
  
    color: rgba(255, 255, 255, 1);
   
}
.app .fila.alerta .alerta-copiado p,
.app .fila.alerta .alerta-copiado i{
    font-size: 12px;

}




