*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.modal-dialog-crd {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh; /* Altura del 100% de la ventana */
}

.icon-eyee{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}


.containerf{
    background: #18383c91;
    width: 30vw;
    height: 55vh;
    padding: 3rem 3rem;
    box-sizing: border-box;
    border-radius: 10px;
}

.containerfr{
    background: #18383c91;
    width: 30vw;
    height: 75vh;
    padding: 3rem 3rem;
    box-sizing: border-box;
    border-radius: 10px;
}

.contentf{

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

formlr{
    
    width: 1060px;
}

.contentf img{
    
    height: 100px;
}

.contentf h2{
    margin: 15px 0;
    color: #e7e253;
    text-transform: uppercase;
    font-size: 2.9rem;
    text-shadow: 0 0 40px #d9d9d9;
}

.contentf .input-div{
    position: relative;
    display: grid;
    grid-template-columns: 7% 93%;
    margin: 25px 0;
    padding: 5px 0;
    border-bottom: 2px solid #d9d9d9;
}

.contentf .input-div.onef{
    margin-top: 0 ;
    box-sizing: border-box;
    border-radius: 10px;
}

.i{
    
    color: #d9d9d9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.i i{
    transition:.3s;
}

.input-div div{
    position: relative;
    height: 45px;
}

.input-div div h5{
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #d9d9d9;
    text-shadow: 0 0 40px #d9d9d9;
    font-size: 18px;
    transition: .3s;
}

.input-div:before , .input-div:after{
    content: '';
    position: absolute;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: #d9d9d9;
    box-shadow: 0 5px 5px 0 inset, 0 0 10px 0 #d9d9d9;
    transition: .4s;
}

.input-div:before{
    right: 50%;
}
.input-div:after{
    left: 50%;
}
.input-div.focus:before, .input-div.focus:after{
    width: 50%;
}

.input-div.focus > div > h5 {
    top: -5px;
    font-size: 15px;
}

.input-div.focus > .i  >i{
    color:#999;
}

.input-div div input{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: none ;
    padding: 0.5rem 0.7rem;
    font-size: 1.2rem;
    color: #cdcfd6;
}

.input-div.passf{
    margin-bottom: 4px;
    box-sizing: border-box;
    border-radius: 10px;
}

a{
    display: block;
    text-align: right;
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    transition: .3s;
    padding-bottom: 20px ;
}

a:hover{
    color: #d9d9d9;
}

/* -------------BOTON.---------- */

.boton-neon{

    
    text-align: right;
    font-size: 20px;
    padding: 10px;
    color: #bba31ae8;
    font-weight: 400;
    border: 2px solid;
    text-transform: uppercase;
    letter-spacing: 15px;
    cursor:pointer;
    border-radius: 100px;
    transition: 1.5s;
    background-color: rgba(138, 136, 59, 0.459);
}

.boton-neon:hover{
    box-shadow: 0 5px 50px 0 inset, 0 5px 50px 0 #bba31ad2;
}