.cardr{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.card_contenido{
    width: 40%;
    height: 80%;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #000000;
    box-shadow: rgba(0, 0, 0, 0.35) 10px 15px 20px;
}
.card_contenidoLogos{
    background: #000b76;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-top: 1px solid #000000;
}
.card_logos{
    display: flex;
    width: 50%;
    margin: 0 auto;
    align-items: center;
}

.log_ud{
    width: 100%;
    height: 100px;
    background: url('../../images/logoLarge.png') no-repeat center / contain;
}
.card_informacion{
    background: #000b76;
}
.card_informacionDetalles{
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.card_titulo{
    font-size: 25px;
    color: #ffffff;
    font-family: cursive;
    text-align: center;
}
.card_reglas{
    width: 60%;
    font-size: 15px;
    color: #c4bfbf;
    font-family: cursive;
    text-align: center;
    margin: 0 auto;
    margin-top: 10px;
}

.form-recuperar{
    width: 80%;
    margin: 0 auto;
}
.card_botones{
    width: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}
.card_inputEnviar{
    border: none;
    width: 100px;
    padding: 10px;
    border-radius: 4px;
    background: #082481;
    color: #ffffff;
}
.card_inputCancelar{
    border: none;
    width: 100px;
    border-radius: 4px;
    background: #ff0909;
    padding: 10px;
    color: #ffffff;
}
.card_inputCancelar:hover{
    background: #be0404;
}
.card_inputEnviar:hover{
    background: #071f6e;
}


@media (min-height: 1000px) {
    .card_informacionDetalles{
       padding: 20px 0;
    }
    .card_titulo{
        font-size: 30px;
    }
    .card_reglas{
        width: 80%;
        padding: 30px 0;
        font-size: 25px;
        text-align: justify;
    }
    .card_botones{
        width: 50%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }
    .card_inputEnviar{
        border: none;
        width: 150px;
        padding: 20px;
        border-radius: 4px;
        color: #ffffff;
    }
    .card_inputCancelar{
        border: none;
        width: 150px;
        border-radius: 4px;
       
        padding: 20px;
        color: #ffffff;
    }
}


@media only screen and (max-width: 767px) {
    .cardr{
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .card_contenido{
        width: 90%;
        height: 90vh;
    }
    .form-recuperar{
        width: 80%;
        margin: 40px auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    /* Agrega tus estilos específicos para tabletas aquí */
    .cardr{
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .card_contenido{
        width: 90%;
        height: 90vh;
    }
    .form-recuperar{
        width: 80%;
        margin: 40px auto;
    }
}

